You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
// 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
|