MCPcopy Create free account
hub / github.com/apache/httpd / ap_str_tolower

Function ap_str_tolower

server/util.c:2410–2416  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2408}
2409
2410AP_DECLARE(void) ap_str_tolower(char *str)
2411{
2412 while (*str) {
2413 *str = apr_tolower(*str);
2414 ++str;
2415 }
2416}
2417
2418AP_DECLARE(void) ap_str_toupper(char *str)
2419{

Callers 15

cache_canonicalise_keyFunction · 0.85
add_extension_infoFunction · 0.85
remove_extension_infoFunction · 0.85
mime_post_configFunction · 0.85
find_ctFunction · 0.85
authnz_ldap_post_configFunction · 0.85
macro_sectionFunction · 0.85
use_macroFunction · 0.85
undef_macroFunction · 0.85
add_proxyFunction · 0.85
set_proxy_dirconnFunction · 0.85
add_memberFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected