Reset hash table parameters already initialized with _dictInit()*/
| 121 | |
| 122 | /* Reset hash table parameters already initialized with _dictInit()*/ |
| 123 | static void _dictReset |
| 124 | ( |
| 125 | dict *d, |
| 126 | int htidx |
| 127 | ) |
| 128 | { |
| 129 | d->ht_table[htidx] = NULL; |
| 130 | d->ht_size_exp[htidx] = -1; |
| 131 | d->ht_used[htidx] = 0; |
| 132 | } |
| 133 | |
| 134 | /* Create a new hash table */ |
| 135 | dict *HashTableCreate |
no outgoing calls
no test coverage detected