diff include/SDL_stdinc.h @ 1512:845b1619c8f6

Added _strnicmp support
author Sam Lantinga <slouken@libsdl.org>
date Mon, 13 Mar 2006 02:12:39 +0000
parents 720f8bb49d7d
children a80e1e0880b8
line wrap: on
line diff
--- a/include/SDL_stdinc.h	Mon Mar 13 02:12:15 2006 +0000
+++ b/include/SDL_stdinc.h	Mon Mar 13 02:12:39 2006 +0000
@@ -523,6 +523,8 @@
 
 #if HAVE_STRNCASECMP
 #define SDL_strncasecmp strncasecmp
+#elif HAVE__STRNICMP
+#define SDL_strncasecmp _strnicmp
 #else
 extern DECLSPEC int SDLCALL SDL_strncasecmp(const char *str1, const char *str2, size_t maxlen);
 #endif