diff options
author | Pieter Noordhuis <pcnoordhuis@gmail.com> | 2010-12-31 12:56:15 +0100 |
---|---|---|
committer | Pieter Noordhuis <pcnoordhuis@gmail.com> | 2010-12-31 15:49:26 +0100 |
commit | b758e52e44580c45dd863ba884613fcd9ec61a71 (patch) | |
tree | f85368b65ce38cd07a8bccd98afbc9ceb6a6d622 /dict.h | |
parent | 4e8c8e74ee7727e1b2b671504fabd72e7e96dbdf (diff) |
Remove unused code/cleanup
Diffstat (limited to 'dict.h')
-rw-r--r-- | dict.h | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -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 */ |