validate that the root element uses a given DAV: tagname (TRUE==valid) */
| 326 | |
| 327 | /* validate that the root element uses a given DAV: tagname (TRUE==valid) */ |
| 328 | DAV_DECLARE(int) dav_validate_root(const apr_xml_doc *doc, |
| 329 | const char *tagname) |
| 330 | { |
| 331 | return dav_validate_root_ns(doc, APR_XML_NS_DAV_ID, tagname); |
| 332 | } |
| 333 | |
| 334 | /* find and return the next child with a tagname in the given namespace */ |
| 335 | DAV_DECLARE(apr_xml_elem *) dav_find_next_ns(const apr_xml_elem *elem, |
no test coverage detected