From: Gisle Vanem Date: Sat, 6 Feb 2016 22:02:53 +0000 (-0500) Subject: examples/htmltitle: Use _stricmp on Windows X-Git-Tag: curl-7_47_1~7 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6f702ebaa237487e1d1e7c1ad4b9a019c2ae474d;p=curl examples/htmltitle: Use _stricmp on Windows Bug: https://curl.haxx.se/mail/lib-2016-02/0017.html --- diff --git a/docs/examples/htmltitle.cpp b/docs/examples/htmltitle.cpp index 180a72122..5e6b4a003 100644 --- a/docs/examples/htmltitle.cpp +++ b/docs/examples/htmltitle.cpp @@ -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