Merge remote branch 'origin/master' into pipe-video
[mesa.git] / src / egl / main / eglstring.h
1 #ifndef EGLSTRING_INCLUDED
2 #define EGLSTRING_INCLUDED
3
4 #include <string.h>
5 #include <stdio.h>
6
7 #ifdef _EGL_OS_WINDOWS
8 #define _eglstrcasecmp _stricmp
9 #define _eglsnprintf _snprintf
10 #else
11 #define _eglstrcasecmp strcasecmp
12 #define _eglsnprintf snprintf
13 #endif
14
15 extern char *
16 _eglstrdup(const char *s);
17
18
19 #endif /* EGLSTRING_INCLUDED */