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

Function xmlInitNodeInfoSeq

ThirdParty/libxml2/vtklibxml2/parserInternals.c:2654–2662  ·  view source on GitHub ↗

* xmlInitNodeInfoSeq: * @seq: a node info sequence pointer * * DEPRECATED: Don't use. * * -- Initialize (set to initial state) node info sequence */

Source from the content-addressed store, hash-verified

2652 * -- Initialize (set to initial state) node info sequence
2653 */
2654void
2655xmlInitNodeInfoSeq(xmlParserNodeInfoSeqPtr seq)
2656{
2657 if (seq == NULL)
2658 return;
2659 seq->length = 0;
2660 seq->maximum = 0;
2661 seq->buffer = NULL;
2662}
2663
2664/**
2665 * xmlClearNodeInfoSeq:

Callers 5

htmlInitParserCtxtFunction · 0.85
htmlCtxtResetFunction · 0.85
xmlInitSAXParserCtxtFunction · 0.85
xmlClearNodeInfoSeqFunction · 0.85
xmlCtxtResetFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected