* xmlFreeIDTable: * @table: An id table * * Deallocate the memory used by an ID hash table. */
| 2453 | * Deallocate the memory used by an ID hash table. |
| 2454 | */ |
| 2455 | void |
| 2456 | xmlFreeIDTable(xmlIDTablePtr table) { |
| 2457 | xmlHashFree(table, xmlFreeIDTableEntry); |
| 2458 | } |
| 2459 | |
| 2460 | /** |
| 2461 | * xmlIsID: |
no test coverage detected