aboutsummaryrefslogtreecommitdiff
path: root/Src/Wasabi/bfc/platform/strcmp.h
blob: f76d47af189e69fc9f448749de2746eb3359d539 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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