* xmlParserInputBufferCreateFilename: * @URI: a C string containing the URI or filename * @enc: the charset encoding if known * * Create a buffered parser input for the progressive parsing of a file * Automatic support for ZLIB/Compress compressed document is provided * by default if found at compile-time. * Do an encoding check if enc == XML_CHAR_ENCODING_NONE * * Returns the new parse
| 1647 | * Returns the new parser input or NULL |
| 1648 | */ |
| 1649 | xmlParserInputBufferPtr |
| 1650 | xmlParserInputBufferCreateFilename(const char *URI, xmlCharEncoding enc) { |
| 1651 | if (xmlParserInputBufferCreateFilenameValue != NULL) |
| 1652 | return(xmlParserInputBufferCreateFilenameValue(URI, enc)); |
| 1653 | |
| 1654 | return(__xmlParserInputBufferCreateFilename(URI, enc)); |
| 1655 | } |
| 1656 | |
| 1657 | /** |
| 1658 | * xmlParserInputBufferCreateFilenameSafe: |
no test coverage detected