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

Function xmlSaveNotationDecl

ThirdParty/libxml2/vtklibxml2/xmlsave.c:2176–2182  ·  view source on GitHub ↗

* xmlSaveNotationDecl: * @ctxt: save context * @cur: notation * * Serialize a notation declaration. * * Return 0 on succes, -1 on error. */

Source from the content-addressed store, hash-verified

2174 * Return 0 on succes, -1 on error.
2175 */
2176int
2177xmlSaveNotationDecl(xmlSaveCtxtPtr ctxt, xmlNotationPtr cur) {
2178 if (ctxt == NULL)
2179 return(-1);
2180 xmlBufDumpNotationDecl(ctxt->buf, cur);
2181 return(0);
2182}
2183
2184/**
2185 * xmlSaveNotationTable:

Callers 1

xmlDumpNotationDeclFunction · 0.85

Calls 1

xmlBufDumpNotationDeclFunction · 0.85

Tested by

no test coverage detected