| 4498 | } |
| 4499 | |
| 4500 | PUGI__FN xml_node xml_node::child(const char_t* name_) const |
| 4501 | { |
| 4502 | if (!_root) |
| 4503 | return xml_node(); |
| 4504 | |
| 4505 | for (xml_node_struct* i = _root->first_child; i; i = i->next_sibling) |
| 4506 | if (i->name && impl::strequal(name_, i->name)) |
| 4507 | return xml_node(i); |
| 4508 | |
| 4509 | return xml_node(); |
| 4510 | } |
| 4511 | |
| 4512 | PUGI__FN xml_attribute xml_node::attribute(const char_t* name_) const |
| 4513 | { |
no test coverage detected