| 159 | } |
| 160 | |
| 161 | void acl_xml3_node_append(ACL_XML3_NODE *node1, ACL_XML3_NODE *node2) |
| 162 | { |
| 163 | acl_ring_append(&node1->node, &node2->node); |
| 164 | node2->parent = node1->parent; |
| 165 | node1->xml->node_cnt++; |
| 166 | } |
| 167 | |
| 168 | void acl_xml3_node_add_child(ACL_XML3_NODE *parent, ACL_XML3_NODE *child) |
| 169 | { |
nothing calls this directly
no test coverage detected
searching dependent graphs…