| 73 | extern "C" void asyncFreeDictTable(dictEntry **de); |
| 74 | |
| 75 | void dictSetHashFunctionSeed(uint8_t *seed) { |
| 76 | memcpy(dict_hash_function_seed,seed,sizeof(dict_hash_function_seed)); |
| 77 | } |
| 78 | |
| 79 | uint8_t *dictGetHashFunctionSeed(void) { |
| 80 | return dict_hash_function_seed; |