| 8400 | * this gets queries from modules. */ |
| 8401 | |
| 8402 | uint64_t dictCStringKeyHash(const void *key) { |
| 8403 | return dictGenHashFunction((unsigned char*)key, strlen((char*)key)); |
| 8404 | } |
| 8405 | |
| 8406 | int dictCStringKeyCompare(void *privdata, const void *key1, const void *key2) { |
| 8407 | UNUSED(privdata); |
nothing calls this directly
no test coverage detected