mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-11 05:33:47 +01:00
Try to use stricmp variants that MSDN actually recommends
Per recommendation by Gisle Vanem
This commit is contained in:
parent
2878dad9db
commit
fecb8214d5
@ -18,13 +18,13 @@
|
||||
#ifndef HAVE_STRNCASECMP
|
||||
static inline int strncasecmp(const char *a, const char *b, size_t n);
|
||||
static inline int strncasecmp(const char *a, const char *b, size_t n) {
|
||||
return strncmpi(a,b);
|
||||
return _strnicmp(a,b,n);
|
||||
}
|
||||
#endif
|
||||
#ifndef HAVE_STRCASECMP
|
||||
static inline int strcasecmp(const char *a, const char *b, size_t n);
|
||||
static inline int strcasecmp(const char *a, const char *b, size_t n) {
|
||||
return strcmpi(a,b);
|
||||
return _stricmp(a,b);
|
||||
}
|
||||
#endif
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user