/*
 *    Implementation of strcasecmp and strncasecmp for platforms
 *    that do not have them
 */

#ifndef HAVE_STRCASECMP

extern int strcasecmp(const char * /*s1*/, const char * /*s2*/);
extern int strncasecmp(const char * /*s1*/, const char * /*s2*/, size_t /*n*/);

#endif
