aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ptrmap.h
diff options
Diffstat (limited to 'ptrmap.h')
-rw-r--r--ptrmap.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/ptrmap.h b/ptrmap.h
new file mode 100644
index 00000000..070db15e
--- /dev/null
+++ b/ptrmap.h
@@ -0,0 +1,12 @@
+#ifndef PTRMAP_H
+#define PTRMAP_H
+
+struct ptrmap;
+
+
+/* ptrmap.c */
+void __ptrmap_add(struct ptrmap **mapp, void *key, void *val);
+void __ptrmap_update(struct ptrmap **mapp, void *key, void *val);
+void *__ptrmap_lookup(struct ptrmap *map, void *key);
+
+#endif