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