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

Function xmlFreePropList

ThirdParty/libxml2/vtklibxml2/tree.c:1903–1912  ·  view source on GitHub ↗

* xmlFreePropList: * @cur: the first attribute in the list * * Free an attribute list including all children. */

Source from the content-addressed store, hash-verified

1901 * Free an attribute list including all children.
1902 */
1903void
1904xmlFreePropList(xmlAttrPtr cur) {
1905 xmlAttrPtr next;
1906 if (cur == NULL) return;
1907 while (cur != NULL) {
1908 next = cur->next;
1909 xmlFreeProp(cur);
1910 cur = next;
1911 }
1912}
1913
1914/**
1915 * xmlFreeProp:

Callers 5

xmlC14NProcessAttrsAxisFunction · 0.85
xmlParseCRNG_datatypeFunction · 0.85
xmlFreeNodeListFunction · 0.85
xmlFreeNodeFunction · 0.85
xmlCopyPropListFunction · 0.85

Calls 1

xmlFreePropFunction · 0.85

Tested by

no test coverage detected