MCPcopy Create free account
hub / github.com/KhronosGroup/OpenCOLLADA / xmlParserInputBufferCreateFilename

Function xmlParserInputBufferCreateFilename

Externals/LibXML/xmlIO.c:2441–2447  ·  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 * If filename is "-' then we use stdin as the input. * Automatic support for ZLIB/Compress compressed document is provided * by default if found at compile-time. * Do an encoding check if enc

Source from the content-addressed store, hash-verified

2439 * Returns the new parser input or NULL
2440 */
2441xmlParserInputBufferPtr
2442xmlParserInputBufferCreateFilename(const char *URI, xmlCharEncoding enc) {
2443 if ((xmlParserInputBufferCreateFilenameValue)) {
2444 return xmlParserInputBufferCreateFilenameValue(URI, enc);
2445 }
2446 return __xmlParserInputBufferCreateFilename(URI, enc);
2447}
2448
2449#ifdef LIBXML_OUTPUT_ENABLED
2450xmlOutputBufferPtr

Callers 9

xmlParseCatalogFileFunction · 0.85
testSAXFunction · 0.85
xmlNewTextReaderFilenameFunction · 0.85
xmlReaderNewFileFunction · 0.85
xmlNewInputFromFileFunction · 0.85
xmlSchemaValidateFileFunction · 0.85
xmlXIncludeLoadTxtFunction · 0.85