MCPcopy Create free account
hub / github.com/Kitware/VTK / xmlTextWriterWriteFormatCDATA

Function xmlTextWriterWriteFormatCDATA

ThirdParty/libxml2/vtklibxml2/xmlwriter.c:2731–2744  ·  view source on GitHub ↗

* 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 */

Source from the content-addressed store, hash-verified

2729 * Returns the bytes written (may be 0 because of buffering) or -1 in case of error
2730 */
2731int
2732xmlTextWriterWriteFormatCDATA(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:

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected