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