X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/14ed10d9573b57c43011c2af2f5abb771abc7bfb..a48c8d873bc2a49f66ab398ebed51dc45764ca17:/src/dict.h

diff --git a/src/dict.h b/src/dict.h
index 76451047..5f856953 100644
--- a/src/dict.h
+++ b/src/dict.h
@@ -162,6 +162,8 @@ void dictEnableResize(void);
 void dictDisableResize(void);
 int dictRehash(dict *d, int n);
 int dictRehashMilliseconds(dict *d, int ms);
+void dictSetHashFunctionSeed(unsigned int initval);
+unsigned int dictGetHashFunctionSeed(void);
 
 /* Hash table types */
 extern dictType dictTypeHeapStringCopyKey;