aboutsummaryrefslogtreecommitdiffstats
path: root/src/utilfuns/unixstr.cpp
blob: 6d9c330696ced906922a44328f10fdc083514636 (plain) (blame)
1
2
3
4
5
6
7
8
9
// Include only if your UNIX compiler does not include stricmp but does include strcasecmp

#include <unixstr.h>

SWORD_NAMESPACE_START
int stricmp(const char *s1, const char *s2) {
	return strcasecmp(s1, s2);
}
SWORD_NAMESPACE_END