summaryrefslogtreecommitdiffstats
path: root/Hashtable.h
diff options
context:
space:
mode:
authorNathan Scott <nathans@redhat.com>2020-08-18 17:41:49 +1000
committerNathan Scott <nathans@redhat.com>2020-08-18 17:41:49 +1000
commit7ac1c709b727bd460889f2765db9e2a37535ef90 (patch)
tree02a76cefab54370e77dbeb9888f5f223d7515eb0 /Hashtable.h
parent579995c7c2385b844d81b2508710dcbbe9b0d64f (diff)
Re-generate all headers with latest scripts/MakeHeader.py
Sync-up missing extern declarations for many functions.
Diffstat (limited to 'Hashtable.h')
-rw-r--r--Hashtable.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/Hashtable.h b/Hashtable.h
index 25608961..32b02188 100644
--- a/Hashtable.h
+++ b/Hashtable.h
@@ -30,20 +30,20 @@ struct Hashtable_ {
#ifdef DEBUG
-int Hashtable_count(Hashtable* this);
+extern int Hashtable_count(Hashtable* this);
#endif
-Hashtable* Hashtable_new(int size, bool owner);
+extern Hashtable* Hashtable_new(int size, bool owner);
-void Hashtable_delete(Hashtable* this);
+extern void Hashtable_delete(Hashtable* this);
-void Hashtable_put(Hashtable* this, unsigned int key, void* value);
+extern void Hashtable_put(Hashtable* this, unsigned int key, void* value);
-void* Hashtable_remove(Hashtable* this, unsigned int key);
+extern void* Hashtable_remove(Hashtable* this, unsigned int key);
extern void* Hashtable_get(Hashtable* this, unsigned int key);
-void Hashtable_foreach(Hashtable* this, Hashtable_PairFunction f, void* userData);
+extern void Hashtable_foreach(Hashtable* this, Hashtable_PairFunction f, void* userData);
#endif

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