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

Function xmlParserValidityError

ThirdParty/libxml2/vtklibxml2/error.c:877–885  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

875 * line, position and extra parameters.
876 */
877void
878xmlParserValidityError(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:

Callers

nothing calls this directly

Calls 1

xmlVFormatLegacyErrorFunction · 0.85

Tested by

no test coverage detected