| 5325 | } |
| 5326 | |
| 5327 | PUGI__FN xml_node xml_document::document_element() const |
| 5328 | { |
| 5329 | for (xml_node_struct* i = _root->first_child; i; i = i->next_sibling) |
| 5330 | if ((i->header & impl::xml_memory_page_type_mask) + 1 == node_element) |
| 5331 | return xml_node(i); |
| 5332 | |
| 5333 | return xml_node(); |
| 5334 | } |
| 5335 | |
| 5336 | #ifndef PUGIXML_NO_STL |
| 5337 | PUGI__FN std::string PUGIXML_FUNCTION as_utf8(const wchar_t* str) |