11 lines
197 B
C
11 lines
197 B
C
#ifndef _PATTY_HASH_H
|
|
#define _PATTY_HASH_H
|
|
|
|
#include <stdint.h>
|
|
#include <sys/types.h>
|
|
|
|
#define PATTY_DICT_BUCKET_SIZE 16
|
|
|
|
uint32_t patty_hash(void *key, size_t size);
|
|
|
|
#endif /* _PATTY_HASH_H */
|