| 460 | } |
| 461 | |
| 462 | DAV_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 | |
| 473 | DAV_DECLARE(void) dav_xmlns_add(dav_xmlns_info *xi, |
| 474 | const char *prefix, const char *uri) |
no outgoing calls
no test coverage detected