mirror of
https://github.com/curl/curl.git
synced 2025-01-18 14:04:30 +08:00
examples/htmltitle: Use _stricmp on Windows
Bug: https://curl.haxx.se/mail/lib-2016-02/0017.html
This commit is contained in:
parent
86d3d62f5a
commit
6f702ebaa2
@ -42,7 +42,7 @@
|
||||
//
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#define COMPARE(a, b) (!stricmp((a), (b)))
|
||||
#define COMPARE(a, b) (!_stricmp((a), (b)))
|
||||
#else
|
||||
#define COMPARE(a, b) (!strcasecmp((a), (b)))
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user