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

Function xmlSaveNotationTable

ThirdParty/libxml2/vtklibxml2/xmlsave.c:2193–2199  ·  view source on GitHub ↗

* xmlSaveNotationTable: * @ctxt: save context * @cur: notation table * * Serialize notation declarations of a document. * * Return 0 on succes, -1 on error. */

Source from the content-addressed store, hash-verified

2191 * Return 0 on succes, -1 on error.
2192 */
2193int
2194xmlSaveNotationTable(xmlSaveCtxtPtr ctxt, xmlNotationTablePtr cur) {
2195 if (ctxt == NULL)
2196 return(-1);
2197 xmlBufDumpNotationTable(ctxt->buf, cur);
2198 return(0);
2199}
2200
2201/**
2202 * xmlSaveFlush:

Callers 1

xmlDumpNotationTableFunction · 0.85

Calls 1

xmlBufDumpNotationTableFunction · 0.85

Tested by

no test coverage detected