MCPcopy Create free account
hub / github.com/Kitware/VTK / xmlParserError

Function xmlParserError

ThirdParty/libxml2/vtklibxml2/error.c:839–847  ·  view source on GitHub ↗

* 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. */

Source from the content-addressed store, hash-verified

837 * extra parameters.
838 */
839void
840xmlParserError(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:

Callers

nothing calls this directly

Calls 1

xmlVFormatLegacyErrorFunction · 0.85

Tested by

no test coverage detected