summaryrefslogtreecommitdiff
path: root/src/port.h
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2014-11-23 12:53:43 +0100
committerAndreas Baumann <abaumann@yahoo.com>2014-11-23 12:53:43 +0100
commit86eeb7ad117e99115ccdd3e0784ece3cc4fcef7b (patch)
treebc689793344ebb817ff859b00c9b7ac910616a00 /src/port.h
parent6ad4a234bd58a2738d7baa04f758e324e322ea69 (diff)
downloadbiruda-86eeb7ad117e99115ccdd3e0784ece3cc4fcef7b.tar.gz
biruda-86eeb7ad117e99115ccdd3e0784ece3cc4fcef7b.tar.bz2
several fixes for Windows (glib, strcasecmp, webserver and interactive
mode fixes)
Diffstat (limited to 'src/port.h')
-rw-r--r--src/port.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/port.h b/src/port.h
index 3f48600..16cc520 100644
--- a/src/port.h
+++ b/src/port.h
@@ -15,6 +15,9 @@
#define snprintf _snprintf
#endif
+// strcasecmp
+#define strcasecmp _stricmp
+
// ISO C99 stdbool.h
#if defined( _WIN32 ) && ( _MSC_VER < 1800 )
typedef unsigned char _Bool;