* 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 */
| 697 | * clear the second list |
| 698 | */ |
| 699 | void |
| 700 | xmlListMerge(xmlListPtr l1, xmlListPtr l2) |
| 701 | { |
| 702 | xmlListCopy(l1, l2); |
| 703 | xmlListClear(l2); |
| 704 | } |
| 705 | |
| 706 | /** |
| 707 | * xmlListDup: |
no test coverage detected