mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-04-30 13:57:59 +03:00
Imported Upstream version 0.26.0
This commit is contained in:
commit
9a2b6c69b6
1398 changed files with 212217 additions and 0 deletions
18
libs/platform/strings.h
Normal file
18
libs/platform/strings.h
Normal file
|
@ -0,0 +1,18 @@
|
|||
// Wrapper for MSVC/GCC
|
||||
#ifndef _STRINGS_WRAPPER_H
|
||||
#define _STRINGS_WRAPPER_H
|
||||
|
||||
|
||||
// For GCC, just use strings.h (this applies to mingw too)
|
||||
#if defined(__GNUC__)
|
||||
# include <strings.h>
|
||||
#elif defined(MSVC) || defined(_MSC_VER)
|
||||
# pragma warning(disable: 4996)
|
||||
# define strcasecmp stricmp
|
||||
# define snprintf _snprintf
|
||||
#else
|
||||
# warning "Unable to determine your compiler, you should probably take a look here."
|
||||
# include <strings.h> // Just take a guess
|
||||
#endif
|
||||
|
||||
#endif /* _STRINGS_WRAPPER_H */
|
Loading…
Add table
Add a link
Reference in a new issue