| 609 | } |
| 610 | |
| 611 | void *HashTableFetchValue(dict *d, const void *key) { |
| 612 | dictEntry *he; |
| 613 | |
| 614 | he = HashTableFind(d,key); |
| 615 | return he ? HashTableGetVal(he) : NULL; |
| 616 | } |
| 617 | |
| 618 | /* Find an element from the table, also get the plink of the entry. The entry |
| 619 | * is returned if the element is found, and the user should later call |
nothing calls this directly
no test coverage detected