* xmlDebugDumpDocumentHead: * @output: the FILE * for the output * @doc: the document * * Dumps debug information concerning the document, not recursive */
| 1484 | * Dumps debug information concerning the document, not recursive |
| 1485 | */ |
| 1486 | void |
| 1487 | xmlDebugDumpDocumentHead(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: |
no test coverage detected