1
0
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:
Stefan Eissing
2015-12-18 16:07:04 +00:00
parent 31f1818983
commit 3244c2cd5c
2 changed files with 0 additions and 13 deletions

View File

@@ -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;