returns number of elements in hash table
| 150 | |
| 151 | // returns number of elements in hash table |
| 152 | unsigned long HashTableElemCount |
| 153 | ( |
| 154 | const dict *d |
| 155 | ) { |
| 156 | return d->ht_used[0] + d->ht_used[1]; |
| 157 | } |
| 158 | |
| 159 | /* Initialize the hash table */ |
| 160 | int _dictInit |
no outgoing calls
no test coverage detected