summaryrefslogtreecommitdiffstats
path: root/compat/posix-shims/strings.h
blob: c917a669d0e60a465d503bdc0d621750a1e5903e (plain)
1
2
3
4
5
6
7
8
9
#include <compat.h>

#ifndef HAVE_STRCASECMP
#ifdef _MSC_VER
#define strcasecmp _stricmp
#else
#error No strcasecmp() implementation for this platform is available.
#endif
#endif