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

strcasecmp.h

Go to the documentation of this file.
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

Generated at Wed Nov 21 12:22:05 2001 by doxygen1.2.3 written by Dimitri van Heesch, © 1997-2000