aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLukas Fleischer <calcurse@cryptocrack.de>2012-04-21 11:21:49 +0200
committerLukas Fleischer <calcurse@cryptocrack.de>2012-04-21 11:22:50 +0200
commit2c77124972e0ad5d8f5667bf96dc2f48d266a17a (patch)
treeb55f1badded94fdb12392366b3b895f9d596df46 /src
parent674f398ee9739da5b8f2a155f42322e69eada91f (diff)
downloadcalcurse-2c77124972e0ad5d8f5667bf96dc2f48d266a17a.tar.gz
calcurse-2c77124972e0ad5d8f5667bf96dc2f48d266a17a.zip
Add prototypes for hash table functions
These can be generated dynamically using the HTABLE_PROTOTYPE macro. Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
Diffstat (limited to 'src')
-rw-r--r--src/io.c1
-rw-r--r--src/note.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/io.c b/src/io.c
index 7f8565a..f6388df 100644
--- a/src/io.c
+++ b/src/io.c
@@ -78,6 +78,7 @@ static int load_keys_ht_compare (struct ht_keybindings_s *,
#define HSIZE 256
HTABLE_HEAD (ht_keybindings, HSIZE, ht_keybindings_s);
+HTABLE_PROTOTYPE (ht_keybindings, ht_keybindings_s)
HTABLE_GENERATE (ht_keybindings, ht_keybindings_s, load_keys_ht_getkey,
load_keys_ht_compare)
diff --git a/src/note.c b/src/note.c
index 112d1e1..a65a384 100644
--- a/src/note.c
+++ b/src/note.c
@@ -50,6 +50,7 @@ static void note_gc_extract_key (struct note_gc_hash *, char **, int *);
static int note_gc_cmp (struct note_gc_hash *, struct note_gc_hash *);
HTABLE_HEAD (htp, NOTE_GC_HSIZE, note_gc_hash);
+HTABLE_PROTOTYPE (htp, note_gc_hash)
HTABLE_GENERATE (htp, note_gc_hash, note_gc_extract_key, note_gc_cmp)
/* Create note file from a string and return a newly allocated string that