Clear & Release the hash table */
| 494 | |
| 495 | /* Clear & Release the hash table */ |
| 496 | void dictRelease(dict *d) |
| 497 | { |
| 498 | _dictClear(d,&d->ht[0],NULL); |
| 499 | _dictClear(d,&d->ht[1],NULL); |
| 500 | zfree(d); |
| 501 | } |
| 502 | |
| 503 | dictEntry *dictFind(dict *d, const void *key) |
| 504 | { |
no test coverage detected