#ifndef STRINGS_H #define STRINGS_H #include static int strcasecmp(const char *s1, const char *s2) { return _stricmp(s1, s2); } static int strncasecmp(const char *s1, const char *s2, size_t n) { return _strnicmp(s1, s2, n); } #endif /* STRINGS_H */