| 3700 | } |
| 3701 | |
| 3702 | PUGI__FN bool is_attribute_of(xml_attribute_struct* attr, xml_node_struct* node) |
| 3703 | { |
| 3704 | for (xml_attribute_struct* a = node->first_attribute; a; a = a->next_attribute) |
| 3705 | if (a == attr) |
| 3706 | return true; |
| 3707 | |
| 3708 | return false; |
| 3709 | } |
| 3710 | |
| 3711 | PUGI__FN bool allow_insert_attribute(xml_node_type parent) |
| 3712 | { |
no outgoing calls
no test coverage detected