* xmlCopyNodeList: * @node: the first node in the list. * * Copy a node list and all children. * * Use of this function is DISCOURAGED in favor of xmlDocCopyNodeList. * * Returns the head of the copied list or NULL if a memory * allocation failed. */
| 4534 | * allocation failed. |
| 4535 | */ |
| 4536 | xmlNodePtr xmlCopyNodeList(xmlNodePtr node) { |
| 4537 | xmlNodePtr ret = xmlStaticCopyNodeList(node, NULL, NULL); |
| 4538 | return(ret); |
| 4539 | } |
| 4540 | |
| 4541 | #if defined(LIBXML_TREE_ENABLED) |
| 4542 | /** |
no test coverage detected