* xmlDocDump: * @f: the FILE* * @cur: the document * * Dump an XML document to an open FILE. * * returns: the number of bytes written or -1 in case of failure. */
| 2817 | * returns: the number of bytes written or -1 in case of failure. |
| 2818 | */ |
| 2819 | int |
| 2820 | xmlDocDump(FILE *f, xmlDocPtr cur) { |
| 2821 | return(xmlDocFormatDump (f, cur, 0)); |
| 2822 | } |
| 2823 | |
| 2824 | /** |
| 2825 | * xmlSaveFileTo: |
no test coverage detected