aboutsummaryrefslogtreecommitdiff
path: root/src/hash/xxh.h
diff options
context:
space:
mode:
authorame <[email protected]>2025-07-24 02:20:32 -0500
committerame <[email protected]>2025-07-24 02:20:32 -0500
commitb392bec30ebdd4c84446623193b82531b8001b88 (patch)
tree05a803b9f0c333633f5b09d582343e36ddb7443c /src/hash/xxh.h
parent09943d9cea7a29ad8a0b8dbbc9ed8a2e0971cc08 (diff)
remove 'newer' hashes that arent really mine
Diffstat (limited to 'src/hash/xxh.h')
-rw-r--r--src/hash/xxh.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/hash/xxh.h b/src/hash/xxh.h
deleted file mode 100644
index 07e7579..0000000
--- a/src/hash/xxh.h
+++ /dev/null
@@ -1,25 +0,0 @@
-#include "../lua.h"
-#include <stdint.h>
-
-/**
- * calculates a xxhash32 of (len) bytes
- *
- * @param {uint8_t*} input bytes
- * @param {uint32_t} hash seed
- * @param {size_t} input length
- * @return {uint32_t} 32 bit hash
-*/
-uint32_t i_xxhash32(uint8_t*, uint32_t, size_t);
-
-/**
- * calculates a xxhash64 of (len) bytes
- *
- * @param {uint8_t*} input bytes
- * @param {uint64_t} hash seed
- * @param {size_t} input length
- * @return {uint64_t} 64 bit hash
-*/
-uint64_t i_xxhash64(uint8_t*, uint64_t, size_t);
-
-int l_xxh32(lua_State*);
-int l_xxh64(lua_State*);