]> granicus.if.org Git - apache/commitdiff
further info re impl
authorJim Jagielski <jim@apache.org>
Sat, 21 Nov 2015 13:59:43 +0000 (13:59 +0000)
committerJim Jagielski <jim@apache.org>
Sat, 21 Nov 2015 13:59:43 +0000 (13:59 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1715527 13f79535-47bb-0310-9956-ffa450edef68

include/httpd.h

index b21f5d406ca7fa4fc7c4407adb7f32ab578b832b..9d9cca9718641b7111a3a121dd2fb0da0ecd3905 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
+ * 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
@@ -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
+ * 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