* xmlDebugDumpOneNode: * @output: the FILE * for the output * @node: the node * @depth: the indentation level. * * Dumps debug information for the element node, it is not recursive */
| 1420 | * Dumps debug information for the element node, it is not recursive |
| 1421 | */ |
| 1422 | void |
| 1423 | xmlDebugDumpOneNode(FILE * output, xmlNodePtr node, int depth) |
| 1424 | { |
| 1425 | xmlDebugCtxt ctxt; |
| 1426 | |
| 1427 | if (output == NULL) return; |
| 1428 | xmlCtxtDumpInitCtxt(&ctxt); |
| 1429 | ctxt.output = output; |
| 1430 | ctxt.depth = depth; |
| 1431 | xmlCtxtDumpOneNode(&ctxt, node); |
| 1432 | xmlCtxtDumpCleanCtxt(&ctxt); |
| 1433 | } |
| 1434 | |
| 1435 | /** |
| 1436 | * xmlDebugDumpNode: |
no test coverage detected