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

Function xmlSBufInit

ThirdParty/libxml2/vtklibxml2/parser.c:731–738  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

729} xmlSBuf;
730
731static void
732xmlSBufInit(xmlSBuf *buf, unsigned max) {
733 buf->mem = NULL;
734 buf->size = 0;
735 buf->cap = 0;
736 buf->max = max;
737 buf->code = XML_ERR_OK;
738}
739
740static int
741xmlSBufGrow(xmlSBuf *buf, unsigned len) {

Callers 3

xmlParseEntityValueFunction · 0.85
xmlParseAttValueInternalFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected