* xmlDumpElementDeclScan: * @elem: An element table * @buf: the XML buffer output * * This routine is used by the hash scan function. It just reverses * the arguments. */
| 1444 | * the arguments. |
| 1445 | */ |
| 1446 | static void |
| 1447 | xmlDumpElementDeclScan(void *elem, void *save, |
| 1448 | const xmlChar *name ATTRIBUTE_UNUSED) { |
| 1449 | xmlSaveTree(save, elem); |
| 1450 | } |
| 1451 | |
| 1452 | /** |
| 1453 | * xmlDumpElementTable: |
nothing calls this directly
no test coverage detected