* 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. */
| 4518 | * allocation failed. |
| 4519 | */ |
| 4520 | xmlNodePtr xmlDocCopyNodeList(xmlDocPtr doc, xmlNodePtr node) { |
| 4521 | xmlNodePtr ret = xmlStaticCopyNodeList(node, doc, NULL); |
| 4522 | return(ret); |
| 4523 | } |
| 4524 | |
| 4525 | /** |
| 4526 | * xmlCopyNodeList: |
nothing calls this directly
no test coverage detected