1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-10-26 12:25:09 +03:00

avoid possible future probs on Win32, daniel.

This commit is contained in:
Daniel Veillard 2000-09-22 18:42:33 +00:00
parent 64c20ed0b7
commit 20cdd5e484

View File

@ -67,8 +67,13 @@
#ifdef STANDALONE
#define DEBUG_HTTP
#ifdef WIN32
#define xmlStrncasecmp(a, b, n) strnicmp((char *)a, (char *)b, n)
#define xmlStrcasecmp(a, b) stricmp((char *)a, (char *)b)
#else
#define xmlStrncasecmp(a, b, n) strncasecmp((char *)a, (char *)b, n)
#define xmlStrcasecmpi(a, b) strcasecmp((char *)a, (char *)b)
#define xmlStrcasecmp(a, b) strcasecmp((char *)a, (char *)b)
#endif
#endif
#define XML_NANO_HTTP_MAX_REDIR 10