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

Function xmlParserInputBufferCreateFilename

ThirdParty/libxml2/vtklibxml2/xmlIO.c:1649–1655  ·  view source on GitHub ↗

* 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

Source from the content-addressed store, hash-verified

1647 * Returns the new parser input or NULL
1648 */
1649xmlParserInputBufferPtr
1650xmlParserInputBufferCreateFilename(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:

Callers 4

xmlParseCatalogFileFunction · 0.85
testSAXFunction · 0.85
xmlNewTextReaderFilenameFunction · 0.85
xmlReaderNewFileFunction · 0.85

Tested by

no test coverage detected