Remove an element, returning DICT_OK on success or DICT_ERR if the * element was not found. */
| 511 | /* Remove an element, returning DICT_OK on success or DICT_ERR if the |
| 512 | * element was not found. */ |
| 513 | int HashTableDelete(dict *ht, const void *key) { |
| 514 | return dictGenericDelete(ht,key,0) ? DICT_OK : DICT_ERR; |
| 515 | } |
| 516 | |
| 517 | /* Remove an element from the table, but without actually releasing |
| 518 | * the key, value and dictionary entry. The dictionary entry is returned |
nothing calls this directly
no test coverage detected