winamp/Src/Wasabi/bfc/platform/strcmp.h

15 lines
241 B
C
Raw Normal View History

2024-09-24 12:54:57 +00:00
#ifndef NULLSOFT_BFC_STRCMP_H
#define NULLSOFT_BFC_STRCMP_H
#ifdef _WIN32
#include <shlwapi.h>
#define strcasestr StrStrIA
#endif
#ifdef __APPLE__
#include <string.h>
#define _strnicmp strncasecmp
#define _stricmp strcasecmp
#endif
#endif