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

Function xmlOutputBufferCreateFilename

ThirdParty/libxml2/vtklibxml2/xmlIO.c:1769–1777  ·  view source on GitHub ↗

* xmlOutputBufferCreateFilename: * @URI: a C string containing the URI or filename * @encoder: the encoding converter or NULL * @compression: the compression ration (0 none, 9 max). * * Create a buffered output for the progressive saving of a file * If filename is "-' then we use stdout as the output. * Automatic support for ZLIB/Compress compressed document is provided * by default if

Source from the content-addressed store, hash-verified

1767 * Returns the new output or NULL
1768 */
1769xmlOutputBufferPtr
1770xmlOutputBufferCreateFilename(const char *URI,
1771 xmlCharEncodingHandlerPtr encoder,
1772 int compression ATTRIBUTE_UNUSED) {
1773 if ((xmlOutputBufferCreateFilenameValue)) {
1774 return xmlOutputBufferCreateFilenameValue(URI, encoder, compression);
1775 }
1776 return __xmlOutputBufferCreateFilename(URI, encoder, compression);
1777}
1778#endif /* LIBXML_OUTPUT_ENABLED */
1779
1780/**

Callers 6

xmlC14NDocSaveFunction · 0.85
htmlSaveFileFunction · 0.85
htmlSaveFileFormatFunction · 0.85
xmlSaveToFilenameFunction · 0.85
xmlSaveFormatFileEncFunction · 0.85
xmlNewTextWriterFilenameFunction · 0.85

Calls 1

Tested by

no test coverage detected