]> granicus.if.org Git - apache/commitdiff
Not strictly ASCII only, but only ASCII char case is folded
authorWilliam A. Rowe Jr <wrowe@apache.org>
Sat, 21 Nov 2015 17:42:57 +0000 (17:42 +0000)
committerWilliam A. Rowe Jr <wrowe@apache.org>
Sat, 21 Nov 2015 17:42:57 +0000 (17:42 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1715546 13f79535-47bb-0310-9956-ffa450edef68

include/httpd.h

index 9d9cca9718641b7111a3a121dd2fb0da0ecd3905..b17898e34a62f84e9dc7d09a42cb2bbc52bd189f 100644 (file)
@@ -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