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

Function xmlCreateFileParserCtxt

ThirdParty/libxml2/vtklibxml2/parser.c:12809–12813  ·  view source on GitHub ↗

* xmlCreateFileParserCtxt: * @filename: the filename * * DEPRECATED: Use xmlNewParserCtxt and xmlCtxtReadFile. * * Create a parser context for a file content. * Automatic support for ZLIB/Compress compressed document is provided * by default if found at compile-time. * * Returns the new parser context or NULL */

Source from the content-addressed store, hash-verified

12807 * Returns the new parser context or NULL
12808 */
12809xmlParserCtxtPtr
12810xmlCreateFileParserCtxt(const char *filename)
12811{
12812 return(xmlCreateURLParserCtxt(filename, 0));
12813}
12814
12815#ifdef LIBXML_SAX1_ENABLED
12816/**

Callers 3

xmlSAXParseEntityFunction · 0.85
xmlSAXUserParseFileFunction · 0.85
saxParseTestFunction · 0.85

Calls 1

xmlCreateURLParserCtxtFunction · 0.85

Tested by 1

saxParseTestFunction · 0.68