isearch/comm/chash.h
2021-03-19 18:38:34 +08:00

11 lines
232 B
C

#ifndef BITMAP_C_HASH_H__
#define BITMAP_C_HASH_H__
#include <stdint.h>
//hash function for consistent hash
//the algorithm is the same as new_hash, but use another initial value
uint32_t chash(const char *data, int len);
#endif