#include "pl-incl.h" #include "pl-ctype.h" #ifndef HAVE_STRICMP int stricmp(const char *s1, const char *s2) { while(*s1 && makeLower(*s1) == makeLower(*s2)) s1++, s2++; return makeLower(*s1) - makeLower(*s2); } #endif #if !defined(HAVE_MBSCOLL) || !defined(HAVE_MBCASESCOLL) static void wstolower(wchar_t *w, size_t len) { wchar_t *e = &w[len]; for( ; w