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

Function xmlListMerge

ThirdParty/libxml2/vtklibxml2/list.c:699–704  ·  view source on GitHub ↗

* xmlListMerge: * @l1: the original list * @l2: the new list * * include all the elements of the second list in the first one and * clear the second list */

Source from the content-addressed store, hash-verified

697 * clear the second list
698 */
699void
700xmlListMerge(xmlListPtr l1, xmlListPtr l2)
701{
702 xmlListCopy(l1, l2);
703 xmlListClear(l2);
704}
705
706/**
707 * xmlListDup:

Callers 1

xmlListSortFunction · 0.85

Calls 2

xmlListCopyFunction · 0.85
xmlListClearFunction · 0.85

Tested by

no test coverage detected