Return a pointer to the metadata section within the dict. */
| 357 | |
| 358 | /* Return a pointer to the metadata section within the dict. */ |
| 359 | void *HashTableMetadata(dict *d) { |
| 360 | return &d->metadata; |
| 361 | } |
| 362 | |
| 363 | /* Add an element to the target hash table */ |
| 364 | int HashTableAdd |