aboutsummaryrefslogtreecommitdiffstats
path: root/src/utilfuns/unixstr.cpp
diff options
context:
space:
mode:
authordanglassey <danglassey>2002-08-14 09:57:17 +0000
committerdanglassey <danglassey>2002-08-14 09:57:17 +0000
commitdaa67ff1f728c07f2a116ee9a9f4505479ca6808 (patch)
treec224a537d30480002ae0560cc9104b543b4d1b5e /src/utilfuns/unixstr.cpp
parent6d6973e035aac5ec1676efccd5b8ada70c40b639 (diff)
downloadsword-sf-cvs-import-1.1.1.tar.gz
Initial import from crosswire CVS for syncingimport-1.1.1
Diffstat (limited to 'src/utilfuns/unixstr.cpp')
-rw-r--r--src/utilfuns/unixstr.cpp7
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);
+}