Added _stricmp and _snprintf compatibilty macros for posix platforms.

This commit is contained in:
Branimir Karadzic
2012-10-26 14:21:14 -07:00
parent 3ae0e72421
commit 3317fa9f45

View File

@@ -9,6 +9,12 @@
#include "bx.h"
#include <string.h>
#if BX_PLATFORM_POSIX
# include <stdarg.h>
# define _stricmp strcasecmp
# define _snprintf snprintf
#endif // BX_PLATFORM_
namespace bx
{
class CommandLine