From: William A. Rowe Jr Date: Sat, 21 Nov 2015 17:42:57 +0000 (+0000) Subject: Not strictly ASCII only, but only ASCII char case is folded X-Git-Tag: 2.5.0-alpha~2621 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8f88c9d3f1e5ca14dbae7d965a62e7adfa69bc78;p=thirdparty%2Fapache%2Fhttpd.git Not strictly ASCII only, but only ASCII char case is folded git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1715546 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/include/httpd.h b/include/httpd.h index 9d9cca97186..b17898e34a6 100644 --- a/include/httpd.h +++ b/include/httpd.h @@ -2439,7 +2439,7 @@ AP_DECLARE(int) ap_array_str_contains(const apr_array_header_t *array, const char *s); /** - * Known-fast version of strcasecmp(): ASCII only, POSIX compliant + * Known-fast version of strcasecmp(): ASCII case-folding, 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 @@ -2449,7 +2449,7 @@ AP_DECLARE(int) ap_array_str_contains(const apr_array_header_t *array, AP_DECLARE(int) ap_strcasecmp(const char *s1, const char *s2); /** - * Known-fast version of strncasecmp(): ASCII only, POSIX compliant + * Known-fast version of strncasecmp(): ASCII case-folding, 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