POSIX strncasecmp is strnicmp in Windows on Arm

This commit is contained in:
Martin Kroeker
2026-03-27 13:40:39 +01:00
committed by GitHub
parent b8dbc4a1fc
commit 75511cb67c

View File

@@ -38,7 +38,13 @@
/*********************************************************************/
#include "common.h"
#ifndef _MSC_VER
#include <strings.h>
#else
#define strncasecmp _strnicmp
#endif
#if (defined OS_LINUX || defined OS_ANDROID)
#include <asm/hwcap.h>
#include <sys/auxv.h>