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

Function xmlParserNsStartElement

ThirdParty/libxml2/vtklibxml2/parser.c:1507–1514  ·  view source on GitHub ↗

* xmlParserStartElement: * @nsdb: namespace database * * Signal that a new element has started. * * Returns 0 on success, -1 if the element counter overflowed. */

Source from the content-addressed store, hash-verified

1505 * Returns 0 on success, -1 if the element counter overflowed.
1506 */
1507static int
1508xmlParserNsStartElement(xmlParserNsData *nsdb) {
1509 if (nsdb->elementId == UINT_MAX)
1510 return(-1);
1511 nsdb->elementId++;
1512
1513 return(0);
1514}
1515
1516/**
1517 * xmlParserNsLookup:

Callers 1

xmlParseStartTag2Function · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected