Remove an element, returning DICT_OK on success or DICT_ERR if the * element was not found. */
| 428 | /* Remove an element, returning DICT_OK on success or DICT_ERR if the |
| 429 | * element was not found. */ |
| 430 | int dictDelete(dict *ht, const void *key) { |
| 431 | return dictGenericDelete(ht,key,0) ? DICT_OK : DICT_ERR; |
| 432 | } |
| 433 | |
| 434 | /* Remove an element from the table, but without actually releasing |
| 435 | * the key, value and dictionary entry. The dictionary entry is returned |
no test coverage detected