10 lines
177 B
C
10 lines
177 B
C
#ifndef REPERTORY_STRINGS_H
|
|
#define REPERTORY_STRINGS_H
|
|
#ifdef _WIN32
|
|
|
|
#define strncasecmp _strnicmp
|
|
#define strcasecmp _stricmp
|
|
|
|
#endif // _WIN32
|
|
#endif // REPERTORY_STRINGS_H
|