The _stricmp (alias stricmp) function compares lowercase versions of two character strings.
int _stricmp( LPCSTR lpString1, LPCSTR lpString2 )
If the string pointed to by lpString1 is less than the string pointed to by lpString2, the return value is negative.
If the string pointed to by lpString1 is greater than the string pointed to by lpString2, the return value is positive.
If the strings are equal, the return value is zero.
EX1
void _stricmp_ex1() { string str1 = "hello world!"; int cmp = _stricmp(str1, "HELLO WORLD!"); // cmp equals 0. out_int("cmp = ", cmp); }
origin.h