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

Function xmlParserValidityWarning

ThirdParty/libxml2/vtklibxml2/error.c:896–904  ·  view source on GitHub ↗

* xmlParserValidityWarning: * @ctx: an XML parser context * @msg: the message to display/transmit * @...: extra parameters for the message display * * Display and format a validity warning messages, gives file, line, * position and extra parameters. */

Source from the content-addressed store, hash-verified

894 * position and extra parameters.
895 */
896void
897xmlParserValidityWarning(void *ctx, const char *msg ATTRIBUTE_UNUSED, ...)
898{
899 va_list ap;
900
901 va_start(ap, msg);
902 xmlVFormatLegacyError(ctx, "validity warning", msg, ap);
903 va_end(ap);
904}
905
906
907/************************************************************************

Callers

nothing calls this directly

Calls 1

xmlVFormatLegacyErrorFunction · 0.85

Tested by

no test coverage detected