* xmlHashCopy: * @hash: hash table * @copy: copier function for items in the hash * * DEPRECATED: Leaks memory in error case. * * Copy the hash table using @copy to copy payloads. * * Returns the new table or NULL if a memory allocation failed. */
| 1198 | * Returns the new table or NULL if a memory allocation failed. |
| 1199 | */ |
| 1200 | xmlHashTablePtr |
| 1201 | xmlHashCopy(xmlHashTablePtr hash, xmlHashCopier copy) { |
| 1202 | return(xmlHashCopySafe(hash, copy, NULL)); |
| 1203 | } |
| 1204 | |
| 1205 | /** |
| 1206 | * xmlHashSize: |
nothing calls this directly
no test coverage detected