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 Thu Jun 20 22:13:01 2002 for The Sword Project by doxygen1.2.15