add alternative for _strnicmp on non-Windows

This commit is contained in:
Claude Heiland-Allen 2023-12-05 13:32:56 +00:00
parent f4490a6ed3
commit 0cdfc207b5

View File

@ -2,6 +2,10 @@
#include "Isaac.h" #include "Isaac.h"
#ifndef _WIN32
#define _strnicmp strncasecmp
#endif
/// <summary> /// <summary>
/// Global utility classes and functions that don't really fit anywhere else, but are /// Global utility classes and functions that don't really fit anywhere else, but are
/// too small to justify being in their own file. /// too small to justify being in their own file.