* xmlDumpEntityDeclScan: * @ent: An entity table * @buf: An XML buffer. * * When using the hash table scan function, arguments need to be reversed */
| 952 | * When using the hash table scan function, arguments need to be reversed |
| 953 | */ |
| 954 | static void |
| 955 | xmlDumpEntityDeclScan(void *ent, void *save, |
| 956 | const xmlChar *name ATTRIBUTE_UNUSED) { |
| 957 | xmlSaveTree(save, ent); |
| 958 | } |
| 959 | |
| 960 | /** |
| 961 | * xmlDumpEntitiesTable: |
nothing calls this directly
no test coverage detected