* htmlSaveFileEnc: * @filename: the filename * @cur: the document * @encoding: the document encoding * * Dump an HTML document to a file using a given encoding * and formatting returns/spaces are added. * * returns: the number of byte written or -1 in case of failure. */
| 1130 | * returns: the number of byte written or -1 in case of failure. |
| 1131 | */ |
| 1132 | int |
| 1133 | htmlSaveFileEnc(const char *filename, xmlDocPtr cur, const char *encoding) { |
| 1134 | return(htmlSaveFileFormat(filename, cur, encoding, 1)); |
| 1135 | } |
| 1136 | |
| 1137 | #endif /* LIBXML_OUTPUT_ENABLED */ |
| 1138 |
nothing calls this directly
no test coverage detected