* 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
| 1767 | * Returns the new output or NULL |
| 1768 | */ |
| 1769 | xmlOutputBufferPtr |
| 1770 | xmlOutputBufferCreateFilename(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 | /** |
no test coverage detected