Go to the documentation of this file.00001 #ifndef _GCC_WIN_STRINGS
00002 #define _GCC_WIN_STRINGS
00003
00004 #if defined(_PS3) || defined(__PS3__) || defined(SN_TARGET_PS3)
00005
00006 #else
00007 #if (defined(__GNUC__) || defined(__GCCXML__)) && !defined(_WIN32)
00008 #ifndef _stricmp
00009 int _stricmp(const char* s1, const char* s2);
00010 #endif
00011 int _strnicmp(const char* s1, const char* s2, size_t n);
00012 #ifndef __APPLE__
00013 char *_strlwr(char * str );
00014 #endif
00015 #ifndef _vsnprintf
00016 #define _vsnprintf vsnprintf
00017 #endif
00018 #endif
00019 #endif
00020
00021 #endif // _GCC_WIN_STRINGS