aboutsummaryrefslogtreecommitdiff
path: root/src/hash/djb2.h
diff options
context:
space:
mode:
authorame <[email protected]>2024-03-11 14:02:12 -0500
committerame <[email protected]>2024-03-11 14:02:12 -0500
commit74289579ac66890ef0d7df2a5ec5f15f8308b8cd (patch)
tree36570aa190e64b57c69c10e0cf0e3c1eb880bc92 /src/hash/djb2.h
parent652146a3a4780ede6cc99ae56871f8f6bb506284 (diff)
hashing fixes
Diffstat (limited to 'src/hash/djb2.h')
-rw-r--r--src/hash/djb2.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/hash/djb2.h b/src/hash/djb2.h
index 9c8036a..ab0d20f 100644
--- a/src/hash/djb2.h
+++ b/src/hash/djb2.h
@@ -1,3 +1,5 @@
#include "../lua.h"
+#include <stdint.h>
+uint32_t djb2(uint8_t*, size_t);
int l_djb2(lua_State*);