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

Function xmlBufferWriteChar

ThirdParty/libxml2/vtklibxml2/tree.c:7687–7692  ·  view source on GitHub ↗

* xmlBufferWriteChar: * @buf: the XML buffer output * @string: the string to add * * routine which manage and grows an output buffer. This one add * C chars at the end of the array. */

Source from the content-addressed store, hash-verified

7685 * C chars at the end of the array.
7686 */
7687void
7688xmlBufferWriteChar(xmlBufferPtr buf, const char *string) {
7689 if (buf == NULL)
7690 return;
7691 xmlBufferCCat(buf, string);
7692}
7693
7694
7695/**

Callers 1

xmlExpDumpIntFunction · 0.85

Calls 1

xmlBufferCCatFunction · 0.85

Tested by

no test coverage detected