summaryrefslogtreecommitdiff
path: root/src/sys-strings.h
blob: d4ff0f31b1b5196807eb0fc08c00a8299b334548 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef LI_SYS_STRINGS_H
#define LI_SYS_STRINGS_H
#include "first.h"

#if defined(HAVE_STRINGS_H)

#include <strings.h>

#else /* HAVE_STRINGS_H */

#ifdef _MSC_VER
#define strcasecmp(s1,s2)    _stricmp(s1,s2)
#define strncasecmp(s1,s2,n) _strnicmp(s1,s2,n)
#else
/* ??? */
#endif

#endif /* HAVE_STRINGS_H */

#endif