aboutsummaryrefslogtreecommitdiff
path: root/htab.h
diff options
context:
space:
mode:
Diffstat (limited to 'htab.h')
-rw-r--r--htab.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/htab.h b/htab.h
deleted file mode 100644
index eb0b663..0000000
--- a/htab.h
+++ /dev/null
@@ -1,13 +0,0 @@
-struct hashtablekey {
- uint64_t hash;
- const char *str;
- size_t len;
-};
-
-void htabstrkey(struct hashtablekey *, const char *);
-void htabbufkey(struct hashtablekey *, const char *, size_t);
-
-struct hashtable *mkhtab(size_t);
-void delhtab(struct hashtable *, void(void *));
-void **htabput(struct hashtable *, struct hashtablekey *);
-void *htabget(struct hashtable *, struct hashtablekey *);