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

Function xmlParserWarning

ThirdParty/libxml2/vtklibxml2/error.c:858–866  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

856 * extra parameters.
857 */
858void
859xmlParserWarning(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:

Callers

nothing calls this directly

Calls 1

xmlVFormatLegacyErrorFunction · 0.85

Tested by

no test coverage detected