hexagram/include/hexagram/hash.h
2019-05-18 19:48:28 -05:00

11 lines
224 B
C

#ifndef _HEXAGRAM_HASH_H
#define _HEXAGRAM_HASH_H
#include <stdint.h>
#include <sys/types.h>
#define HEXAGRAM_DICT_BUCKET_SIZE 16
int hexagram_hash(void *key, size_t keysz, uint32_t *hash);
#endif /* _HEXAGRAM_HASH_H */