| 302 | */ |
| 303 | |
| 304 | void |
| 305 | xmlParserPrintFileInfo(xmlParserInputPtr input) { |
| 306 | if (input != NULL) { |
| 307 | if (input->filename) |
| 308 | xmlGenericError(xmlGenericErrorContext, |
| 309 | "%s:%d: ", input->filename, |
| 310 | input->line); |
| 311 | else |
| 312 | xmlGenericError(xmlGenericErrorContext, |
| 313 | "Entity: line %d: ", input->line); |
| 314 | } |
| 315 | } |
| 316 | |
| 317 | /** |
| 318 | * xmlParserPrintFileContextInternal: |
no outgoing calls
no test coverage detected