Restore strcompare MSC

This commit is contained in:
Christoffer Lerno
2021-10-19 18:24:08 +02:00
committed by Christoffer Lerno
parent 6c9b5fd30d
commit 1db23defbc

View File

@@ -8,6 +8,9 @@
#include <assert.h> #include <assert.h>
#ifndef _MSC_VER #ifndef _MSC_VER
#include <unistd.h> #include <unistd.h>
#else
#define strncasecmp _strnicmp
#define strcasecmp _stricmp
#endif #endif
#include <stdbool.h> #include <stdbool.h>
#include <string.h> #include <string.h>