diff options
Diffstat (limited to 'src/utilfuns/unixstr.cpp')
-rw-r--r-- | src/utilfuns/unixstr.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/utilfuns/unixstr.cpp b/src/utilfuns/unixstr.cpp new file mode 100644 index 0000000..7a975a2 --- /dev/null +++ b/src/utilfuns/unixstr.cpp @@ -0,0 +1,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); +} |