mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-12-19 17:45:53 +01:00
15 lines
241 B
C
15 lines
241 B
C
|
#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
|