* xmlSaveNotationDecl: * @ctxt: save context * @cur: notation * * Serialize a notation declaration. * * Return 0 on succes, -1 on error. */
| 2174 | * Return 0 on succes, -1 on error. |
| 2175 | */ |
| 2176 | int |
| 2177 | xmlSaveNotationDecl(xmlSaveCtxtPtr ctxt, xmlNotationPtr cur) { |
| 2178 | if (ctxt == NULL) |
| 2179 | return(-1); |
| 2180 | xmlBufDumpNotationDecl(ctxt->buf, cur); |
| 2181 | return(0); |
| 2182 | } |
| 2183 | |
| 2184 | /** |
| 2185 | * xmlSaveNotationTable: |
no test coverage detected