Skip to content
Snippets Groups Projects
Commit 2ca6e56d authored by rswindell's avatar rswindell
Browse files

str[n]icmp macros don't need argument list - this makes references to the

functions as pointers possible (e.g. in replace_str_vars).
parent 57109a69
No related branches found
No related tags found
No related merge requests found
...@@ -178,8 +178,8 @@ extern "C" { ...@@ -178,8 +178,8 @@ extern "C" {
DLLEXPORT char* DLLCALL strlwr(char* str); DLLEXPORT char* DLLCALL strlwr(char* str);
DLLEXPORT char* DLLCALL strrev(char* str); DLLEXPORT char* DLLCALL strrev(char* str);
#if !defined(stricmp) #if !defined(stricmp)
#define stricmp(x,y) strcasecmp(x,y) #define stricmp strcasecmp
#define strnicmp(x,y,z) strncasecmp(x,y,z) #define strnicmp strncasecmp
#endif #endif
#endif #endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment