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

Function dav_xmlns_create

modules/dav/main/util.c:462–471  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

460}
461
462DAV_DECLARE(dav_xmlns_info *) dav_xmlns_create(apr_pool_t *pool)
463{
464 dav_xmlns_info *xi = apr_pcalloc(pool, sizeof(*xi));
465
466 xi->pool = pool;
467 xi->uri_prefix = apr_hash_make(pool);
468 xi->prefix_uri = apr_hash_make(pool);
469
470 return xi;
471}
472
473DAV_DECLARE(void) dav_xmlns_add(dav_xmlns_info *xi,
474 const char *prefix, const char *uri)

Callers 3

dav_get_allpropsFunction · 0.85
dav_get_propsFunction · 0.85
mod_dav.hFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected