Mercurial > sdl-ios-xcode
comparison include/SDL_stdinc.h @ 1510:720f8bb49d7d
Win32 fixes
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Mon, 13 Mar 2006 02:06:33 +0000 |
parents | 73dc5d39bbf8 |
children | 845b1619c8f6 |
comparison
equal
deleted
inserted
replaced
1509:678d105d4492 | 1510:720f8bb49d7d |
---|---|
513 extern DECLSPEC int SDLCALL SDL_strncmp(const char *str1, const char *str2, size_t maxlen); | 513 extern DECLSPEC int SDLCALL SDL_strncmp(const char *str1, const char *str2, size_t maxlen); |
514 #endif | 514 #endif |
515 | 515 |
516 #if HAVE_STRCASECMP | 516 #if HAVE_STRCASECMP |
517 #define SDL_strcasecmp strcasecmp | 517 #define SDL_strcasecmp strcasecmp |
518 #elif HAVE_STRICMP | 518 #elif HAVE__STRICMP |
519 #define SDL_strcasecmp stricmp | 519 #define SDL_strcasecmp _stricmp |
520 #else | 520 #else |
521 extern DECLSPEC int SDLCALL SDL_strcasecmp(const char *str1, const char *str2); | 521 extern DECLSPEC int SDLCALL SDL_strcasecmp(const char *str1, const char *str2); |
522 #endif | 522 #endif |
523 | 523 |
524 #if HAVE_STRNCASECMP | 524 #if HAVE_STRNCASECMP |