find and return the (unique) child with a given DAV: tagname */
| 357 | |
| 358 | /* find and return the (unique) child with a given DAV: tagname */ |
| 359 | DAV_DECLARE(apr_xml_elem *) dav_find_child(const apr_xml_elem *elem, |
| 360 | const char *tagname) |
| 361 | { |
| 362 | return dav_find_child_ns(elem, APR_XML_NS_DAV_ID, tagname); |
| 363 | } |
| 364 | |
| 365 | /* find and return the attribute with a name in the given namespace */ |
| 366 | DAV_DECLARE(apr_xml_attr *) dav_find_attr_ns(const apr_xml_elem *elem, |
no test coverage detected