| 4824 | } |
| 4825 | |
| 4826 | PUGI__FN xml_attribute xml_node::attribute(const char_t* name_) const |
| 4827 | { |
| 4828 | if (!_root) return xml_attribute(); |
| 4829 | |
| 4830 | for (xml_attribute_struct* i = _root->first_attribute; i; i = i->next_attribute) |
| 4831 | if (i->name && impl::strequal(name_, i->name)) |
| 4832 | return xml_attribute(i); |
| 4833 | |
| 4834 | return xml_attribute(); |
| 4835 | } |
| 4836 | |
| 4837 | PUGI__FN xml_node xml_node::next_sibling(const char_t* name_) const |
| 4838 | { |
no test coverage detected