11 lines
224 B
C
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 */
|