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

Function xmlDebugDumpDocumentHead

ThirdParty/libxml2/vtklibxml2/debugXML.c:1486–1498  ·  view source on GitHub ↗

* xmlDebugDumpDocumentHead: * @output: the FILE * for the output * @doc: the document * * Dumps debug information concerning the document, not recursive */

Source from the content-addressed store, hash-verified

1484 * Dumps debug information concerning the document, not recursive
1485 */
1486void
1487xmlDebugDumpDocumentHead(FILE * output, xmlDocPtr doc)
1488{
1489 xmlDebugCtxt ctxt;
1490
1491 if (output == NULL)
1492 output = stdout;
1493 xmlCtxtDumpInitCtxt(&ctxt);
1494 ctxt.options |= DUMP_TEXT_TYPE;
1495 ctxt.output = output;
1496 xmlCtxtDumpDocumentHead(&ctxt, doc);
1497 xmlCtxtDumpCleanCtxt(&ctxt);
1498}
1499
1500/**
1501 * xmlDebugDumpDocument:

Callers 1

xmlShellDirFunction · 0.85

Calls 3

xmlCtxtDumpInitCtxtFunction · 0.85
xmlCtxtDumpDocumentHeadFunction · 0.85
xmlCtxtDumpCleanCtxtFunction · 0.85

Tested by

no test coverage detected