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

Function ap_str_toupper

server/util.c:2418–2424  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2416}
2417
2418AP_DECLARE(void) ap_str_toupper(char *str)
2419{
2420 while (*str) {
2421 *str = apr_toupper(*str);
2422 ++str;
2423 }
2424}
2425
2426/*
2427 * We must return a FQDN

Callers 6

rewrite_mapfunc_toupperFunction · 0.85
lookup_variableFunction · 0.85
os_forkFunction · 0.85
os_forkFunction · 0.85
ap_regnameFunction · 0.85
toupper_funcFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected