Clear & Release the hash table */
| 577 | |
| 578 | /* Clear & Release the hash table */ |
| 579 | void HashTableRelease(dict *d) |
| 580 | { |
| 581 | _dictClear(d,0,NULL); |
| 582 | _dictClear(d,1,NULL); |
| 583 | free(d); |
| 584 | } |
| 585 | |
| 586 | dictEntry *HashTableFind(dict *d, const void *key) |
| 587 | { |
no test coverage detected