diff options
author | Jim Jagielski <jim@apache.org> | 2015-11-20 19:57:36 +0100 |
---|---|---|
committer | Jim Jagielski <jim@apache.org> | 2015-11-20 19:57:36 +0100 |
commit | 897b8d4fab83cfc5bc4cea940070469b270ce5be (patch) | |
tree | 066201005333c8cf52564e5a2b7e1abecfc308d5 /include/httpd.h | |
parent | Provide our own impl of str[n]casecmp() (diff) | |
download | apache2-897b8d4fab83cfc5bc4cea940070469b270ce5be.tar.xz apache2-897b8d4fab83cfc5bc4cea940070469b270ce5be.zip |
make bill happy (if possible!)
Note that these are ascii specific.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1715404 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/httpd.h')
-rw-r--r-- | include/httpd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/httpd.h b/include/httpd.h index 38438bfb6a..b21f5d406c 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() + * 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 @@ -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() + * 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 |