blob: 7a975a204d7a1eb42c3d08d0a13668c54dceed48 (
plain) (
blame)
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);
}
|