Remove an element, returning DICT_OK on success or DICT_ERR if the * element was not found. */
| 754 | /* Remove an element, returning DICT_OK on success or DICT_ERR if the |
| 755 | * element was not found. */ |
| 756 | int dictDelete(dict *ht, const void *key) { |
| 757 | return dictGenericDelete(ht,key,0) ? DICT_OK : DICT_ERR; |
| 758 | } |
| 759 | |
| 760 | /* Remove an element from the table, but without actually releasing |
| 761 | * the key, value and dictionary entry. The dictionary entry is returned |
no test coverage detected