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

Function xmlFreeNsList

ThirdParty/libxml2/vtklibxml2/tree.c:817–828  ·  view source on GitHub ↗

* xmlFreeNsList: * @cur: the first namespace pointer * * Free a list of xmlNs objects. */

Source from the content-addressed store, hash-verified

815 * Free a list of xmlNs objects.
816 */
817void
818xmlFreeNsList(xmlNsPtr cur) {
819 xmlNsPtr next;
820 if (cur == NULL) {
821 return;
822 }
823 while (cur != NULL) {
824 next = cur->next;
825 xmlFreeNs(cur);
826 cur = next;
827 }
828}
829
830/**
831 * xmlNewDtd:

Callers 7

xmlTextReaderFreeNodeFunction · 0.85
xmlTextReaderFreeDocFunction · 0.85
xmlFreeDocFunction · 0.85
xmlFreeNodeListFunction · 0.85
xmlFreeNodeFunction · 0.85
xmlCopyNamespaceListFunction · 0.85

Calls 1

xmlFreeNsFunction · 0.85

Tested by

no test coverage detected