Main Page   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members  

unixstr.cpp

00001 // Include only if your UNIX compiler does not include stricmp but does include strcasecmp
00002 
00003 #include <unixstr.h>
00004 
00005 int stricmp(const char *s1, const char *s2) {
00006         return strcasecmp(s1, s2);
00007 }

Generated on Wed Apr 3 22:34:15 2002 for The Sword Project by doxygen1.2.14 written by Dimitri van Heesch, © 1997-2002