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

Function xmlC14NProcessNodeList

ThirdParty/libxml2/vtklibxml2/c14n.c:1715–1729  ·  view source on GitHub ↗

* xmlC14NProcessNodeList: * @ctx: the pointer to C14N context object * @cur: the node to start from * * Processes all nodes in the row starting from cur. * * Returns non-negative value on success or negative value on fail */

Source from the content-addressed store, hash-verified

1713 * Returns non-negative value on success or negative value on fail
1714 */
1715static int
1716xmlC14NProcessNodeList(xmlC14NCtxPtr ctx, xmlNodePtr cur)
1717{
1718 int ret;
1719
1720 if (ctx == NULL) {
1721 xmlC14NErrParam(ctx);
1722 return (-1);
1723 }
1724
1725 for (ret = 0; cur != NULL && ret >= 0; cur = cur->next) {
1726 ret = xmlC14NProcessNode(ctx, cur);
1727 }
1728 return (ret);
1729}
1730
1731
1732/**

Callers 3

xmlC14NProcessNodeFunction · 0.85
xmlC14NExecuteFunction · 0.85

Calls 2

xmlC14NErrParamFunction · 0.85
xmlC14NProcessNodeFunction · 0.85

Tested by

no test coverage detected