aboutsummaryrefslogtreecommitdiff
path: root/map.h
diff options
context:
space:
mode:
Diffstat (limited to 'map.h')
-rw-r--r--map.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/map.h b/map.h
deleted file mode 100644
index df3139e..0000000
--- a/map.h
+++ /dev/null
@@ -1,12 +0,0 @@
-struct mapkey {
- uint64_t hash;
- const char *str;
- size_t len;
-};
-
-void mapkey(struct mapkey *, const char *, size_t);
-
-struct map *mkmap(size_t);
-void delmap(struct map *, void(void *));
-void **mapput(struct map *, struct mapkey *);
-void *mapget(struct map *, struct mapkey *);