* xmlSaveNotationTable: * @ctxt: save context * @cur: notation table * * Serialize notation declarations of a document. * * Return 0 on succes, -1 on error. */
| 2191 | * Return 0 on succes, -1 on error. |
| 2192 | */ |
| 2193 | int |
| 2194 | xmlSaveNotationTable(xmlSaveCtxtPtr ctxt, xmlNotationTablePtr cur) { |
| 2195 | if (ctxt == NULL) |
| 2196 | return(-1); |
| 2197 | xmlBufDumpNotationTable(ctxt->buf, cur); |
| 2198 | return(0); |
| 2199 | } |
| 2200 | |
| 2201 | /** |
| 2202 | * xmlSaveFlush: |
no test coverage detected