* xmlCtxtSetOptions: * @ctxt: an XML parser context * @options: a bitmask of xmlParserOption values * * Applies the options to the parser context. Unset options are * cleared. * * Available since 2.13.0. With older versions, you can use * xmlCtxtUseOptions. * * XML_PARSE_RECOVER * * Enable "recovery" mode which allows non-wellformed documents. * How this mode behaves exactly is unspe
| 13699 | * in case of error. |
| 13700 | */ |
| 13701 | int |
| 13702 | xmlCtxtSetOptions(xmlParserCtxtPtr ctxt, int options) |
| 13703 | { |
| 13704 | return(xmlCtxtSetOptionsInternal(ctxt, options, 0)); |
| 13705 | } |
| 13706 | |
| 13707 | /** |
| 13708 | * xmlCtxtUseOptions: |
no test coverage detected