* htmlNodeDumpFile: * @out: the FILE pointer * @doc: the document * @cur: the current node * * Dump an HTML node, recursive behaviour,children are printed too, * and formatting returns are added. */
| 529 | * and formatting returns are added. |
| 530 | */ |
| 531 | void |
| 532 | htmlNodeDumpFile(FILE *out, xmlDocPtr doc, xmlNodePtr cur) { |
| 533 | htmlNodeDumpFileFormat(out, doc, cur, NULL, 1); |
| 534 | } |
| 535 | |
| 536 | /** |
| 537 | * htmlDocDumpMemoryFormat: |
no test coverage detected