* xmlParserValidityError: * @ctx: an XML parser context * @msg: the message to display/transmit * @...: extra parameters for the message display * * Display and format an validity error messages, gives file, * line, position and extra parameters. */
| 875 | * line, position and extra parameters. |
| 876 | */ |
| 877 | void |
| 878 | xmlParserValidityError(void *ctx, const char *msg ATTRIBUTE_UNUSED, ...) |
| 879 | { |
| 880 | va_list ap; |
| 881 | |
| 882 | va_start(ap, msg); |
| 883 | xmlVFormatLegacyError(ctx, "validity error", msg, ap); |
| 884 | va_end(ap); |
| 885 | } |
| 886 | |
| 887 | /** |
| 888 | * xmlParserValidityWarning: |
nothing calls this directly
no test coverage detected