patty/include/patty/hash.h
XANTRONIX Development c9bee1793c WHoops!
2015-07-20 07:41:25 -05:00

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 */