Skip to content
Snippets Groups Projects
Commit 4c2c2d64 authored by rswindell's avatar rswindell
Browse files

Unix defined macro for stricmp.

parent e360f967
No related branches found
No related tags found
No related merge requests found
......@@ -43,6 +43,7 @@
#include <string.h>
#include <stdarg.h>
#include <stdlib.h>
/* OS Specific */
#if defined(_WIN32)
#include <windows.h>
#endif
......@@ -56,7 +57,6 @@
#include <dos.h>
#endif
/* OS Specific */
#if defined(__FLAT__)
#define far
#endif
......@@ -65,6 +65,9 @@
#include <bios.h>
#endif
#if defined(__unix__) && !defined(stricmp)
#define stricmp strcasecmp
#endif
/****************************************************************************/
/* MALLOC/FREE Macros for various compilers and environments */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment