mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 10:19:55 +00:00
11 lines
188 B
C
11 lines
188 B
C
// Wrapper for MSVC
|
|
#ifndef _STRINGS_WRAPPER_H
|
|
#define _STRINGS_WRAPPER_H
|
|
|
|
#ifdef WIN32
|
|
#pragma warning(disable: 4996)
|
|
#define strcasecmp stricmp
|
|
#define snprintf _snprintf
|
|
#endif
|
|
|
|
#endif
|