1 /*
2  * strcasecmp.h
3  *   prototypes for strcasecmp.c
4  *
5  * $Id: strcasecmp.h,v 1.7 2003/11/28 20:12:41 [Xp-AvR] Exp $
6  */
7 
8 #ifndef _EVANGELINE_COMPAT_STRCASECMP_H
9 #define _EVANGELINE_COMPAT_STRCASECMP_H
10 
11 #include "src/main.h"
12 #include <ctype.h>
13 
14 
15 #ifndef HAVE_STRCASECMP
16 int EvangelineStrcasecmp(const char *, const char *);
17 #else
18 #  define EvangelineStrcasecmp strcasecmp
19 #endif
20 
21 #ifndef HAVE_STRNCASECMP
22 int EvangelineStrncasecmp(const char *, const char *, size_t);
23 #else
24 #  define EvangelineStrncasecmp strncasecmp
25 #endif
26 
27 #endif /* !__EVANGELINE_COMPAT_STRCASECMP_H */
28