mirror of
https://github.com/GNOME/libxml2.git
synced 2025-03-31 19:10:28 +08:00
avoid possible future probs on Win32, daniel.
This commit is contained in:
parent
64c20ed0b7
commit
20cdd5e484
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user