* xmlHashRemoveEntry2: * @hash: hash table * @key: first string key * @key2: second string key * @dealloc: deallocator function for removed item or NULL * * Remove an entry with two strings as key. * * See xmlHashRemoveEntry. * * Returns 0 on success and -1 in case of error. */
| 1248 | * Returns 0 on success and -1 in case of error. |
| 1249 | */ |
| 1250 | int |
| 1251 | xmlHashRemoveEntry2(xmlHashTablePtr hash, const xmlChar *key, |
| 1252 | const xmlChar *key2, xmlHashDeallocator dealloc) { |
| 1253 | return(xmlHashRemoveEntry3(hash, key, key2, NULL, dealloc)); |
| 1254 | } |
| 1255 | |
| 1256 | /** |
| 1257 | * xmlHashRemoveEntry3: |
no test coverage detected