define strcasecmp to stricmp if the latter is available.

git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@1647 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
meep-eep
2005-04-18 14:28:08 +00:00
parent 69f4b817db
commit c8bcea18de
+2
View File
@@ -11,6 +11,8 @@
#ifndef HAVE_STRICMP #ifndef HAVE_STRICMP
# define stricmp strcasecmp # define stricmp strcasecmp
#else
# define strcasecmp stricmp
#endif #endif
#ifndef HAVE_STRUPR #ifndef HAVE_STRUPR