1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-30 21:45:33 +00:00
openmw-tes3mp/libs/platform/strings.h

14 lines
215 B
C
Raw Normal View History

// Wrapper for MSVC
#ifndef _STRINGS_WRAPPER_H
#define _STRINGS_WRAPPER_H
2010-06-22 14:02:58 +00:00
#ifdef WIN32
#pragma warning(disable: 4996)
#define strcasecmp stricmp
2010-06-22 14:02:58 +00:00
#define snprintf _snprintf
#else
#include <strings.h>
2010-06-22 14:02:58 +00:00
#endif
#endif