MCPcopy Create free account
hub / github.com/acl-dev/acl / acl_xml_node_append

Function acl_xml_node_append

lib_acl/src/xml/acl_xml.c:162–167  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

160}
161
162void 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
169void acl_xml_node_add_child(ACL_XML_NODE *parent, ACL_XML_NODE *child)
170{

Callers

nothing calls this directly

Calls 1

acl_ring_appendFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…