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

Function xmlBufAvail

ThirdParty/libxml2/vtklibxml2/buf.c:591–599  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

589 */
590
591size_t
592xmlBufAvail(const xmlBufPtr buf)
593{
594 if ((!buf) || (buf->error))
595 return 0;
596 CHECK_COMPAT(buf)
597
598 return((buf->size > buf->use) ? (buf->size - buf->use - 1) : 0);
599}
600
601/**
602 * xmlBufIsEmpty:

Callers 3

xmlCharEncInputFunction · 0.85
xmlCharEncOutputFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected