scons: Updates for targets/egl-static.
[mesa.git] / src / egl / main / eglstring.h
1 #ifndef EGLSTRING_INCLUDED
2 #define EGLSTRING_INCLUDED
3
4 #include <string.h>
5
6 #ifdef _EGL_OS_WINDOWS
7 #define _eglstrcasecmp _stricmp
8 #define _eglsnprintf _snprintf
9 #else
10 #define _eglstrcasecmp strcasecmp
11 #define _eglsnprintf snprintf
12 #endif
13
14 extern char *
15 _eglstrdup(const char *s);
16
17
18 #endif /* EGLSTRING_INCLUDED */