daa67ff
1 2 3 4 5 6 7
// Include only if your UNIX compiler does not include stricmp but does include strcasecmp #include <unixstr.h> int stricmp(const char *s1, const char *s2) { return strcasecmp(s1, s2); }