Go to the documentation of this file.
16 #if (defined(__GNUC__) || defined(__ARMCC_VERSION) || defined(__GCCXML__) || defined(__S3E__) ) && !defined(_WIN32)
19 int _stricmp(
const char* s1,
const char* s2)
21 return strcasecmp(s1,s2);
24 int _strnicmp(
const char* s1,
const char* s2,
size_t n)
26 return strncasecmp(s1,s2,n);
29 char *_strlwr(
char * str )
33 for (
int i=0; str[i]; i++)
35 if (str[i]>=
'A' && str[i]<=
'Z')