1
Fork 0
turbonss/src/fnv_hash.h

18 lines
492 B
C
Raw Normal View History

2004-12-23 15:16:30 +02:00
#ifndef __FNV_HASH_H__
#define __FNV_HASH_H__
#include "hash.h"
2005-01-18 23:06:08 +02:00
typedef struct cmph__fnv_state_t
2004-12-23 15:16:30 +02:00
{
CMPH_HASH hashfunc;
2005-01-18 23:06:08 +02:00
} cmph_fnv_state_t;
2004-12-23 15:16:30 +02:00
2005-01-18 23:06:08 +02:00
cmph_fnv_state_t *cmph_fnv_state_new();
cmph_uint32 cmph_fnv_hash(cmph_fnv_state_t *state, const char *k, cmph_uint32 keylen);
void cmph_fnv_state_dump(cmph_fnv_state_t *state, char **buf, cmph_uint32 *buflen);
cmph_fnv_state_t *cmph_fnv_state_load(const char *buf, cmph_uint32 buflen);
void cmph_fnv_state_destroy(cmph_fnv_state_t *state);
2004-12-23 15:16:30 +02:00
#endif