summaryrefslogtreecommitdiffstats
path: root/Hashtable.h
diff options
context:
space:
mode:
authorChristian Göttsche <cgzones@googlemail.com>2021-01-04 23:21:54 +0100
committercgzones <cgzones@googlemail.com>2021-01-06 16:59:28 +0100
commit7043a93eba78a37460b66abcabf3707022bd0181 (patch)
treeabd44b1d0e7e089e6ddd2dadc3b111ba56705015 /Hashtable.h
parent8fe04b7494fe0b8062e9afe4cf784db7f33bd5cd (diff)
Hashtable: hide implementation of Hashtable and HashtableItem
Diffstat (limited to 'Hashtable.h')
-rw-r--r--Hashtable.h13
1 files changed, 1 insertions, 12 deletions
diff --git a/Hashtable.h b/Hashtable.h
index 698d2cfc..7152f5df 100644
--- a/Hashtable.h
+++ b/Hashtable.h
@@ -14,18 +14,7 @@ typedef unsigned int ht_key_t;
typedef void(*Hashtable_PairFunction)(ht_key_t key, void* value, void* userdata);
-typedef struct HashtableItem_ {
- ht_key_t key;
- unsigned int probe;
- void* value;
-} HashtableItem;
-
-typedef struct Hashtable_ {
- unsigned int size;
- HashtableItem* buckets;
- unsigned int items;
- bool owner;
-} Hashtable;
+typedef struct Hashtable_ Hashtable;
#ifndef NDEBUG

© 2014-2024 Faster IT GmbH | imprint | privacy policy