1
0
Fork 0

Remove stricmp macro in favour of NoCaseCompare

This commit is contained in:
peterbell10 2017-07-20 13:32:55 +01:00 committed by Tiger Wang
parent 5a5297974b
commit 55a5ffdf5c
2 changed files with 1 additions and 5 deletions

View File

@ -87,8 +87,6 @@
#define OBSOLETE __attribute__((deprecated))
// Some portability macros :)
#define stricmp strcasecmp
#define FORMATSTRING(formatIndex, va_argsIndex) __attribute__((format (printf, formatIndex, va_argsIndex)))
#if defined(_WIN32)

View File

@ -329,11 +329,9 @@ AString StrToUpper(const AString & s)
int NoCaseCompare(const AString & s1, const AString & s2)
{
#ifdef _MSC_VER
// MSVC has stricmp that compares case-insensitive:
return _stricmp(s1.c_str(), s2.c_str());
#else
// Do it the hard way - convert both strings to lowercase:
return StrToLower(s1).compare(StrToLower(s2));
return strcasecmp(s1.c_str(), s2.c_str());
#endif // else _MSC_VER
}