blob: c917a669d0e60a465d503bdc0d621750a1e5903e [file] [log] [blame]
Jan Kundrát6568f342021-12-11 20:47:42 +01001#include <compat.h>
2
3#ifndef HAVE_STRCASECMP
4#ifdef _MSC_VER
5#define strcasecmp _stricmp
6#else
7#error No strcasecmp() implementation for this platform is available.
8#endif
9#endif