summaryrefslogtreecommitdiff
path: root/src/hashmap.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/hashmap.c')
-rw-r--r--src/hashmap.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/hashmap.c b/src/hashmap.c
new file mode 100644
index 0000000..653b615
--- /dev/null
+++ b/src/hashmap.c
@@ -0,0 +1,5 @@
+#include <daw/utils/hashmap.h>
+
+/* Currently, this is a "works, but very poorly" placeholder implementation.
+ * Should be avoided in practice */
+usize lolhash(const usize s, usize v) { return v % s; }