* xmlParserError: * @ctx: an XML parser context * @msg: the message to display/transmit * @...: extra parameters for the message display * * Display and format an error messages, gives file, line, position and * extra parameters. */
| 837 | * extra parameters. |
| 838 | */ |
| 839 | void |
| 840 | xmlParserError(void *ctx, const char *msg ATTRIBUTE_UNUSED, ...) |
| 841 | { |
| 842 | va_list ap; |
| 843 | |
| 844 | va_start(ap, msg); |
| 845 | xmlVFormatLegacyError(ctx, "error", msg, ap); |
| 846 | va_end(ap); |
| 847 | } |
| 848 | |
| 849 | /** |
| 850 | * xmlParserWarning: |
nothing calls this directly
no test coverage detected