18 lines
305 B
C
18 lines
305 B
C
#ifndef STRNCASECMP_H
|
|
#define STRNCASECMP_H
|
|
|
|
|
|
#ifndef WINSHIT_INCLUDED
|
|
#define WINSHIT_INCLUDED
|
|
|
|
#if defined(WIN32) || defined(WIN64)
|
|
#define strcasecmp _stricmp
|
|
#define strncasecmp(x,y,z) _strnicmp(x,y,z)
|
|
|
|
#endif /* Def WIN32 or Def WIN64 */
|
|
|
|
#endif /* Ndef WINSHIT_INCLUDED */
|
|
|
|
|
|
#endif // STRNCASECMP_H
|