From: erg Date: Thu, 27 Jul 2006 03:08:11 +0000 (+0000) Subject: Add include file for standard unix functions we have to provide X-Git-Tag: LAST_LIBGRAPH~32^2~6038 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5b84323c7ee21aa7f54fc912d8ef5c8d128ff3ca;p=graphviz Add include file for standard unix functions we have to provide for systems like Windows --- 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