* xmlTextWriterWriteFormatCDATA: * @writer: the xmlTextWriterPtr * @format: format string (see printf) * @...: extra parameters for the format * * Write a formatted xml CDATA. * * Returns the bytes written (may be 0 because of buffering) or -1 in case of error */
| 2729 | * Returns the bytes written (may be 0 because of buffering) or -1 in case of error |
| 2730 | */ |
| 2731 | int |
| 2732 | xmlTextWriterWriteFormatCDATA(xmlTextWriterPtr writer, const char *format, |
| 2733 | ...) |
| 2734 | { |
| 2735 | int rc; |
| 2736 | va_list ap; |
| 2737 | |
| 2738 | va_start(ap, format); |
| 2739 | |
| 2740 | rc = xmlTextWriterWriteVFormatCDATA(writer, format, ap); |
| 2741 | |
| 2742 | va_end(ap); |
| 2743 | return rc; |
| 2744 | } |
| 2745 | |
| 2746 | /** |
| 2747 | * xmlTextWriterWriteVFormatCDATA: |
nothing calls this directly
no test coverage detected