Added support for strncasecmp() which is now used in resolv.c.
This commit is contained in:
parent
8fa9767d47
commit
bbc26ef489
|
@ -15,12 +15,14 @@
|
||||||
|
|
||||||
#ifdef __CYGWIN__
|
#ifdef __CYGWIN__
|
||||||
int strcasecmp(const char*, const char*);
|
int strcasecmp(const char*, const char*);
|
||||||
|
int strncasecmp(const char*, const char*, size_t);
|
||||||
char* strdup(const char*);
|
char* strdup(const char*);
|
||||||
#else /* __CYGWIN__ */
|
#else /* __CYGWIN__ */
|
||||||
#define HAVE_SNPRINTF
|
#define HAVE_SNPRINTF
|
||||||
#define snprintf _snprintf
|
#define snprintf _snprintf
|
||||||
#define strcasecmp _stricmp
|
#define strcasecmp _stricmp
|
||||||
#define strdup _strdup
|
#define strncasecmp _strnicmp
|
||||||
|
#define strdup _strdup
|
||||||
#endif /* __CYGWIN__ */
|
#endif /* __CYGWIN__ */
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue