const char *s);
/**
- * Known-fast version of strcasecmp()
+ * Known-fast version of strcasecmp(): ASCII only
* @param s1 The 1st string to compare
* @param s2 The 2nd string to compare
* @return integer greater than, equal to, or less than 0, depending on
AP_DECLARE(int) ap_strcasecmp(const char *s1, const char *s2);
/**
- * Known-fast version of strncasecmp()
+ * Known-fast version of strncasecmp(): ASCII only
* @param s1 The 1st string to compare
* @param s2 The 2nd string to compare
* @param n Maximum number of characters in the strings to compare
/*
* Provide our own known-fast implementation of str[n]casecmp()
+ * NOTE: ASCII only!
*/
static const unsigned char ucharmap[] = {
0x0, 0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7,