| 53 | }; |
| 54 | |
| 55 | static uint64_t dictCStringHash(const void *key) { |
| 56 | return dictGenHashFunction((unsigned char*)key, strlen((char*)key)); |
| 57 | } |
| 58 | |
| 59 | |
| 60 | static void dictKeyDestructor(void *privdata, void *key) |
nothing calls this directly
no test coverage detected