| 673 | } |
| 674 | |
| 675 | void HashTableSetVal(dict *d, dictEntry *de, void *val) { |
| 676 | de->v.val = d->type->valDup ? d->type->valDup(d, val) : val; |
| 677 | } |
| 678 | |
| 679 | /* A pointer to the metadata section within the dict entry. */ |
| 680 | void *HashTableEntryMetadata(dictEntry *de) { |
no outgoing calls
no test coverage detected