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..edcf9cb
--- /dev/null
+++ b/src/hashmap.c
@@ -0,0 +1,5 @@
+#include <engine/hashmap.h>
+
+i32 lolhash(const usize s, i32 v) {
+ return v % s;
+}