summaryrefslogtreecommitdiff
path: root/dict.h
diff options
context:
space:
mode:
authorPieter Noordhuis <pcnoordhuis@gmail.com>2010-12-31 12:56:15 +0100
committerPieter Noordhuis <pcnoordhuis@gmail.com>2010-12-31 15:49:26 +0100
commitb758e52e44580c45dd863ba884613fcd9ec61a71 (patch)
treef85368b65ce38cd07a8bccd98afbc9ceb6a6d622 /dict.h
parent4e8c8e74ee7727e1b2b671504fabd72e7e96dbdf (diff)
Remove unused code/cleanup
Diffstat (limited to 'dict.h')
-rw-r--r--dict.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/dict.h b/dict.h
index 6f9eaa5..81fa000 100644
--- a/dict.h
+++ b/dict.h
@@ -124,13 +124,7 @@ dictIterator *dictGetIterator(dict *ht);
dictEntry *dictNext(dictIterator *iter);
void dictReleaseIterator(dictIterator *iter);
dictEntry *dictGetRandomKey(dict *ht);
-void dictPrintStats(dict *ht);
unsigned int dictGenHashFunction(const unsigned char *buf, int len);
void dictEmpty(dict *ht);
-/* Hash table types */
-extern dictType dictTypeHeapStringCopyKey;
-extern dictType dictTypeHeapStrings;
-extern dictType dictTypeHeapStringCopyKeyValue;
-
#endif /* __DICT_H */