mirror of
https://github.com/curl/curl.git
synced 2026-04-20 03:41:15 +03: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
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue