Go to the documentation of this file.
   16 #ifndef _GCC_WIN_STRINGS 
   17 #define _GCC_WIN_STRINGS 
   19 #if  defined(__native_client__) 
   21         int _stricmp(
const char* s1, 
const char* s2);
 
   23     int _strnicmp(
const char* s1, 
const char* s2, 
size_t n);
 
   24     char *_strlwr(
char * str );
 
   26  #if (defined(__GNUC__)  || defined(__GCCXML__) || defined(__S3E__) ) && !defined(_WIN32) 
   28             int _stricmp(
const char* s1, 
const char* s2);
 
   30         int _strnicmp(
const char* s1, 
const char* s2, 
size_t n);
 
   33         char *_strlwr(
char * str ); 
 
   41 #endif // _GCC_WIN_STRINGS