1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-25 06:35:30 +00:00
OpenMW/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 16:02:58 +02:00
#ifdef WIN32
#pragma warning(disable: 4996)
#define strcasecmp stricmp
2010-06-22 16:02:58 +02:00
#define snprintf _snprintf
2010-06-28 12:44:55 -07:00
#else
#include <strings.h>
2010-06-22 16:02:58 +02:00
#endif
#endif