* xmlFreeElementTable: * @table: An element table * * Deallocate the memory used by an element hash table. */
| 1349 | * Deallocate the memory used by an element hash table. |
| 1350 | */ |
| 1351 | void |
| 1352 | xmlFreeElementTable(xmlElementTablePtr table) { |
| 1353 | xmlHashFree(table, xmlFreeElementTableEntry); |
| 1354 | } |
| 1355 | |
| 1356 | #ifdef LIBXML_TREE_ENABLED |
| 1357 | /** |
no test coverage detected