1
0
forked from 0ad/0ad

str[n]icmp => str[n]casecmp on non-windows

This was SVN commit r437.
This commit is contained in:
Simon Brenner 2004-06-09 13:43:25 +00:00
parent b824eac403
commit 8002f5fe6e

View File

@ -26,6 +26,10 @@ extern float fminf(float a, float b);
extern float fmaxf(float a, float b);
#endif
#ifndef _MSC_VER
#define stricmp strcasecmp
#define strnicmp strncasecmp
#endif
#ifdef __cplusplus
}