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

Function warningDebug

ThirdParty/libxml2/vtklibxml2/runtest.c:1127–1139  ·  view source on GitHub ↗

* warningDebug: * @ctxt: 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

1125 * extra parameters.
1126 */
1127static void
1128warningDebug(void *ctx ATTRIBUTE_UNUSED, const char *msg, ...)
1129{
1130 va_list args;
1131
1132 callbacks++;
1133 if (quiet)
1134 return;
1135 va_start(args, msg);
1136 fprintf(SAXdebug, "SAX.warning: ");
1137 vfprintf(SAXdebug, msg, args);
1138 va_end(args);
1139}
1140
1141/**
1142 * errorDebug:

Callers 1

LIBXML_ATTR_FORMATFunction · 0.85

Calls 2

fprintfFunction · 0.85
vfprintfFunction · 0.85

Tested by

no test coverage detected