const char *s);
/**
- * Known-fast version of strcasecmp(): ASCII only
+ * Known-fast version of strcasecmp(): ASCII only, POSIX compliant
* @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(): ASCII only
+ * Known-fast version of strncasecmp(): ASCII only, POSIX compliant
* @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