| 319 | } |
| 320 | |
| 321 | void xml_node__remove_child0(xml_node * n, xml_node* ptr) |
| 322 | { |
| 323 | ptr->node.remove_child(n->node); |
| 324 | } |
| 325 | void xml_node__remove_child1(NULLCArray name, xml_node* ptr) |
| 326 | { |
| 327 | ptr->node.remove_child(name.ptr); |
nothing calls this directly
no test coverage detected