* xmlFreeNotationTable: * @table: An notation table * * Deallocate the memory used by an entities hash table. */
| 2146 | * Deallocate the memory used by an entities hash table. |
| 2147 | */ |
| 2148 | void |
| 2149 | xmlFreeNotationTable(xmlNotationTablePtr table) { |
| 2150 | xmlHashFree(table, xmlFreeNotationTableEntry); |
| 2151 | } |
| 2152 | |
| 2153 | #ifdef LIBXML_TREE_ENABLED |
| 2154 | /** |
no test coverage detected