* xmlParserPrintFileContext: * @input: an xmlParserInputPtr input * * DEPRECATED: Use xmlFormatError. * * Displays current context within the input content for error tracking */
| 394 | * Displays current context within the input content for error tracking |
| 395 | */ |
| 396 | void |
| 397 | xmlParserPrintFileContext(xmlParserInputPtr input) { |
| 398 | xmlParserPrintFileContextInternal(input, xmlGenericError, |
| 399 | xmlGenericErrorContext); |
| 400 | } |
| 401 | |
| 402 | /** |
| 403 | * xmlFormatError: |
no test coverage detected