lighttpd 1.4.x
https://www.lighttpd.net/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
318 B
20 lines
318 B
#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
|
|
|