mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 21:42:13 +00:00
10 lines
142 B
C
10 lines
142 B
C
|
// Wrapper for MSVC
|
||
|
#ifndef _STRINGS_WRAPPER_H
|
||
|
#define _STRINGS_WRAPPER_H
|
||
|
|
||
|
#pragma warning(disable: 4996)
|
||
|
|
||
|
#define strcasecmp stricmp
|
||
|
|
||
|
#endif
|