linux debugging

commented out line 27-35 to help with linux debugging
This commit is contained in:
MissLavender-LQ
2023-09-28 03:49:04 +01:00
parent 084c1e2a76
commit f1bb67188d

View File

@@ -24,15 +24,15 @@
#include <string.h>
#include <assert.h>
#include <string.h>
strcasecmp(const char* a, const char* b)
{
#ifdef NK_WIN
return _stricmp(a, b);
#endif
#ifdef NK_LINUX
return strcasecmp(a, b);
#endif
}
// strcasecmp(const char* a, const char* b)
// {
// #ifdef NK_WIN
// return _stricmp(a, b);
// #endif
// #ifdef NK_LINUX
// return strcasecmp(a, b);
// #endif
// }
#undef assert
#define assert(x)