From 5b84323c7ee21aa7f54fc912d8ef5c8d128ff3ca Mon Sep 17 00:00:00 2001 From: erg Date: Thu, 27 Jul 2006 03:08:11 +0000 Subject: [PATCH] Add include file for standard unix functions we have to provide for systems like Windows --- compat.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 compat.h diff --git a/compat.h b/compat.h new file mode 100644 index 000000000..a398721d4 --- /dev/null +++ b/compat.h @@ -0,0 +1,9 @@ +#ifndef COMPAT_H +#define COMPAT_H +#ifndef HAVE_STRCASECMP +extern int strcasecmp(const char*, const char*); +#endif +#ifndef HAVE_STRNCASECMP +extern int strncasecmp(const char*, const char*, unsigned int); +#endif +#endif -- 2.40.0