| 5953 | } |
| 5954 | |
| 5955 | PUGI__FN xml_node xml_document::document_element() const |
| 5956 | { |
| 5957 | for (xml_node_struct* i = _root->first_child; i; i = i->next_sibling) |
| 5958 | if ((i->header & impl::xml_memory_page_type_mask) + 1 == node_element) |
| 5959 | return xml_node(i); |
| 5960 | |
| 5961 | return xml_node(); |
| 5962 | } |
| 5963 | |
| 5964 | #ifndef PUGIXML_NO_STL |
| 5965 | PUGI__FN std::string PUGIXML_FUNCTION as_utf8(const wchar_t* str) |
no test coverage detected