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

Function md_util_str_tolower

modules/md/md_util.c:240–248  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

238}
239
240char *md_util_str_tolower(char *s)
241{
242 char *orig = s;
243 while (*s) {
244 *s = (char)apr_tolower(*s);
245 ++s;
246 }
247 return orig;
248}
249
250int md_array_str_index(const apr_array_header_t *array, const char *s,
251 int start, int case_sensitive)

Callers 2

add_domain_nameFunction · 0.85
md_array_str_compactFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected