* xmlTextWriterWriteFormatRaw: * @writer: the xmlTextWriterPtr * @format: format string (see printf) * @...: extra parameters for the format * * Write a formatted raw xml text. * * Returns the bytes written (may be 0 because of buffering) or -1 in case of error */
| 1285 | * Returns the bytes written (may be 0 because of buffering) or -1 in case of error |
| 1286 | */ |
| 1287 | int |
| 1288 | xmlTextWriterWriteFormatRaw(xmlTextWriterPtr writer, const char *format, |
| 1289 | ...) |
| 1290 | { |
| 1291 | int rc; |
| 1292 | va_list ap; |
| 1293 | |
| 1294 | va_start(ap, format); |
| 1295 | |
| 1296 | rc = xmlTextWriterWriteVFormatRaw(writer, format, ap); |
| 1297 | |
| 1298 | va_end(ap); |
| 1299 | return rc; |
| 1300 | } |
| 1301 | |
| 1302 | /** |
| 1303 | * xmlTextWriterWriteVFormatRaw: |
nothing calls this directly
no test coverage detected