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

Function fatalErrorDebug

ThirdParty/libxml2/vtklibxml2/runtest.c:1173–1185  ·  view source on GitHub ↗

* fatalErrorDebug: * @ctxt: An XML parser context * @msg: the message to display/transmit * @...: extra parameters for the message display * * Display and format a fatalError messages, gives file, line, position and * extra parameters. */

Source from the content-addressed store, hash-verified

1171 * extra parameters.
1172 */
1173static void
1174fatalErrorDebug(void *ctx ATTRIBUTE_UNUSED, const char *msg, ...)
1175{
1176 va_list args;
1177
1178 callbacks++;
1179 if (quiet)
1180 return;
1181 va_start(args, msg);
1182 fprintf(SAXdebug, "SAX.fatalError: ");
1183 vfprintf(SAXdebug, msg, args);
1184 va_end(args);
1185}
1186
1187static xmlSAXHandler debugSAXHandlerStruct = {
1188 internalSubsetDebug,

Callers 1

LIBXML_ATTR_FORMATFunction · 0.85

Calls 2

fprintfFunction · 0.85
vfprintfFunction · 0.85

Tested by

no test coverage detected