Commit 6f702eba authored by Gisle Vanem's avatar Gisle Vanem Committed by Jay Satiro
Browse files

examples/htmltitle: Use _stricmp on Windows

parent 86d3d62f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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