* xmlShellPrintNode: * @node : a non-null node to print to the output FILE * * Print node to the output FILE */
| 1898 | * Print node to the output FILE |
| 1899 | */ |
| 1900 | void |
| 1901 | xmlShellPrintNode(xmlNodePtr node) |
| 1902 | { |
| 1903 | xmlShellPrintNodeCtxt(NULL, node); |
| 1904 | } |
| 1905 | #endif /* LIBXML_OUTPUT_ENABLED */ |
| 1906 | |
| 1907 | /** |
nothing calls this directly
no test coverage detected