shithub: femtolisp

ref: 1b38f3de22cbaad22fbd3182cc65f22e7f4ba10f
dir: /hashing.h/

View raw version
#ifndef HASHING_H_
#define HASHING_H_

lltuint_t nextipow2(lltuint_t i);
uint32_t int32hash(uint32_t a);
uint64_t int64hash(uint64_t key);
uint32_t int64to32hash(uint64_t key);
uint64_t memhash(const char* buf, size_t n);
uint32_t memhash32(const char* buf, size_t n);

#endif