* xmlFreeRefTable: * @table: An ref table * * DEPRECATED, do not use. This function will be removed from the public API. * * Deallocate the memory used by an Ref hash table. */
| 2791 | * Deallocate the memory used by an Ref hash table. |
| 2792 | */ |
| 2793 | void |
| 2794 | xmlFreeRefTable(xmlRefTablePtr table) { |
| 2795 | xmlHashFree(table, xmlFreeRefTableEntry); |
| 2796 | } |
| 2797 | |
| 2798 | /** |
| 2799 | * xmlIsRef: |
no test coverage detected