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

Function xmlTextWriterWriteFormatRaw

ThirdParty/libxml2/vtklibxml2/xmlwriter.c:1287–1300  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

1285 * Returns the bytes written (may be 0 because of buffering) or -1 in case of error
1286 */
1287int
1288xmlTextWriterWriteFormatRaw(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:

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected