* xmlHashRemoveEntry: * @hash: hash table * @key: string key * @dealloc: deallocator function for removed item or NULL * * Find the entry specified by the @key and remove it from the hash table. * Payload will be freed with @dealloc. * * Returns 0 on success and -1 if no entry was found. */
| 1230 | * Returns 0 on success and -1 if no entry was found. |
| 1231 | */ |
| 1232 | int xmlHashRemoveEntry(xmlHashTablePtr hash, const xmlChar *key, |
| 1233 | xmlHashDeallocator dealloc) { |
| 1234 | return(xmlHashRemoveEntry3(hash, key, NULL, NULL, dealloc)); |
| 1235 | } |
| 1236 | |
| 1237 | /** |
| 1238 | * xmlHashRemoveEntry2: |
no test coverage detected