* xmlParserWarning: * @ctx: an XML parser context * @msg: the message to display/transmit * @...: extra parameters for the message display * * Display and format a warning messages, gives file, line, position and * extra parameters. */
| 856 | * extra parameters. |
| 857 | */ |
| 858 | void |
| 859 | xmlParserWarning(void *ctx, const char *msg ATTRIBUTE_UNUSED, ...) |
| 860 | { |
| 861 | va_list ap; |
| 862 | |
| 863 | va_start(ap, msg); |
| 864 | xmlVFormatLegacyError(ctx, "warning", msg, ap); |
| 865 | va_end(ap); |
| 866 | } |
| 867 | |
| 868 | /** |
| 869 | * xmlParserValidityError: |
nothing calls this directly
no test coverage detected