* xmlDumpAttributeDeclScan: * @attr: An attribute declaration * @buf: the XML buffer output * * This is used with the hash scan function - just reverses arguments */
| 1992 | * This is used with the hash scan function - just reverses arguments |
| 1993 | */ |
| 1994 | static void |
| 1995 | xmlDumpAttributeDeclScan(void *attr, void *save, |
| 1996 | const xmlChar *name ATTRIBUTE_UNUSED) { |
| 1997 | xmlSaveTree(save, attr); |
| 1998 | } |
| 1999 | |
| 2000 | /** |
| 2001 | * xmlDumpAttributeTable: |
nothing calls this directly
no test coverage detected