00001 #ifndef GAUDIKERNEL_STRCASECMP_H
00002 #define GAUDIKERNEL_STRCASECMP_H
00003
00004 #ifdef _WIN32
00005 inline int strcasecmp(const char *s1, const char *s2) {
00006 return ::_stricmp(s1, s2);
00007 }
00008 inline int strncasecmp(const char *s1, const char *s2, size_t n) {
00009 return ::_stricmp(s1, s2);
00010 }
00011 #else // Unix uses string.h
00012 #include <string.h>
00013 #endif
00014
00015 #endif // GAUDIKERNEL_STRCASECMP_H
1.2.3 written by Dimitri van Heesch,
© 1997-2000