| 870 | } |
| 871 | |
| 872 | dictEntry *dictFind(dict *d, const void *key) |
| 873 | { |
| 874 | dictEntry **deT; |
| 875 | dictht *ht; |
| 876 | uint64_t h = dictHashKey(d, key); |
| 877 | return dictFindWithPrev(d, key, h, &deT, &ht); |
| 878 | } |
| 879 | |
| 880 | void *dictFetchValue(dict *d, const void *key) { |
| 881 | dictEntry *he; |
no test coverage detected