strcasecmp.h (326B)
1 #ifndef __FINWO_STREXTRA_STRCASECMP_H__ 2 #define __FINWO_STREXTRA_STRCASECMP_H__ 3 4 #ifdef __cplusplus 5 extern "C" { 6 #endif 7 8 #if defined(_WIN32) || defined(_WIN64) 9 int strcasecmp(const char *a, const char *b); 10 #else 11 #include <strings.h> 12 #endif 13 14 #ifdef __cplusplus 15 } // extern "C" 16 #endif 17 18 #endif // __FINWO_STREXTRA_STRCASECMP_H__