dbm/
misc/
old-docs/
/* case.h */

/* Declarations and defines for use with case.c */

#ifdef NEED_STRCASECMP
extern int      strcasecmp();

#endif				/* NEED_STRCASECMP */
#ifdef NEED_STRNCASECMP
extern int      strncasecmp();

#endif				/* NEED_STRNCASECMP */
extern int      stringprefix();
extern char    *strstr_CI();

extern char    *uppercase;
extern char    *lowercase;

#define UPCASE(x)	(uppercase[x])
#define DOWNCASE(x)	(lowercase[x])