MCPcopy Create free account
hub / github.com/Kitware/VTK / xmlDocCopyNodeList

Function xmlDocCopyNodeList

ThirdParty/libxml2/vtklibxml2/tree.c:4520–4523  ·  view source on GitHub ↗

* xmlDocCopyNodeList: * @doc: the target document * @node: the first node in the list. * * Copy a node list and all children into a new document. * * Returns the head of the copied list or NULL if a memory * allocation failed. */

Source from the content-addressed store, hash-verified

4518 * allocation failed.
4519 */
4520xmlNodePtr xmlDocCopyNodeList(xmlDocPtr doc, xmlNodePtr node) {
4521 xmlNodePtr ret = xmlStaticCopyNodeList(node, doc, NULL);
4522 return(ret);
4523}
4524
4525/**
4526 * xmlCopyNodeList:

Callers

nothing calls this directly

Calls 1

xmlStaticCopyNodeListFunction · 0.85

Tested by

no test coverage detected