mirror of
https://github.com/apache/httpd.git
synced 2025-08-08 15:02:10 +03:00
removed no longer used h2_strlwr() dinosaur
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1720819 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -64,17 +64,6 @@ size_t h2_util_header_print(char *buffer, size_t maxlen,
|
||||
}
|
||||
|
||||
|
||||
char *h2_strlwr(char *s)
|
||||
{
|
||||
char *p;
|
||||
for (p = s; *p; ++p) {
|
||||
if (*p >= 'A' && *p <= 'Z') {
|
||||
*p += 'a' - 'A';
|
||||
}
|
||||
}
|
||||
return s;
|
||||
}
|
||||
|
||||
void h2_util_camel_case_header(char *s, size_t len)
|
||||
{
|
||||
size_t start = 1;
|
||||
|
Reference in New Issue
Block a user