]> granicus.if.org Git - apache/commitdiff
Before they are used, rename ap_str[n]casecmp() to ap_casecmpstr[n]() to match
authorYann Ylavic <ylavic@apache.org>
Mon, 23 Nov 2015 08:36:35 +0000 (08:36 +0000)
committerYann Ylavic <ylavic@apache.org>
Mon, 23 Nov 2015 08:36:35 +0000 (08:36 +0000)
what will probably be their APR names, avoiding any confusion wrt <strings.h>'s
functions (semantic).

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1715736 13f79535-47bb-0310-9956-ffa450edef68

include/httpd.h
server/util.c

index b17898e34a62f84e9dc7d09a42cb2bbc52bd189f..855733df50e45ae31b064c6912ef240956c8e333 100644 (file)
@@ -2446,7 +2446,7 @@ AP_DECLARE(int) ap_array_str_contains(const apr_array_header_t *array,
  *         if s1 is lexicographically greater than, equal to, or less
  *         than s2 ignoring case.
  */
-AP_DECLARE(int) ap_strcasecmp(const char *s1, const char *s2);
+AP_DECLARE(int) ap_casecmpstr(const char *s1, const char *s2);
 
 /**
  * Known-fast version of strncasecmp(): ASCII case-folding, POSIX compliant
@@ -2457,7 +2457,7 @@ AP_DECLARE(int) ap_strcasecmp(const char *s1, const char *s2);
  *         if s1 is lexicographically greater than, equal to, or less
  *         than s2 ignoring case.
  */
-AP_DECLARE(int) ap_strncasecmp(const char *s1, const char *s2, apr_size_t n);
+AP_DECLARE(int) ap_casecmpstrn(const char *s1, const char *s2, apr_size_t n);
 
 #ifdef __cplusplus
 }
index f1215884b9ce1782fb69017e92fb4c57c47fe146..c4316c7bfbb23f3c908b6ac2e7873f19980fee6f 100644 (file)
@@ -3259,7 +3259,7 @@ static const unsigned char ucharmap[] = {
 };
 #endif
 
-AP_DECLARE(int) ap_strcasecmp(const char *s1, const char *s2)
+AP_DECLARE(int) ap_casecmpstr(const char *s1, const char *s2)
 {
     const unsigned char *ps1 = (const unsigned char *) s1;
     const unsigned char *ps2 = (const unsigned char *) s2;
@@ -3272,7 +3272,7 @@ AP_DECLARE(int) ap_strcasecmp(const char *s1, const char *s2)
     return (ucharmap[*ps1] - ucharmap[*--ps2]);
 }
 
-AP_DECLARE(int) ap_strncasecmp(const char *s1, const char *s2, apr_size_t n)
+AP_DECLARE(int) ap_casecmpstrn(const char *s1, const char *s2, apr_size_t n)
 {
     const unsigned char *ps1 = (const unsigned char *) s1;
     const unsigned char *ps2 = (const unsigned char *) s2;