diff options
Diffstat (limited to 'v_windows/v/old/vlib/hash/wyhash.c.v')
-rw-r--r-- | v_windows/v/old/vlib/hash/wyhash.c.v | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/v_windows/v/old/vlib/hash/wyhash.c.v b/v_windows/v/old/vlib/hash/wyhash.c.v new file mode 100644 index 0000000..758af03 --- /dev/null +++ b/v_windows/v/old/vlib/hash/wyhash.c.v @@ -0,0 +1,23 @@ +module hash + +//#flag -I @VEXEROOT/thirdparty/wyhash +//#include "wyhash.h" +fn C.wyhash(&byte, u64, u64, &u64) u64 + +fn C.wyhash64(u64, u64) u64 + +fn init() { + _ := map{ + 1: 1 + } +} + +[inline] +pub fn wyhash_c(key &byte, len u64, seed u64) u64 { + return C.wyhash(key, len, seed, &u64(C._wyp)) +} + +[inline] +pub fn wyhash64_c(a u64, b u64) u64 { + return C.wyhash64(a, b) +} |