summaryrefslogtreecommitdiff
path: root/hash.h
blob: 268c5dc8dd8b7ef90c464f939d47309b73c93f2a (plain)
1
2
3
4
5
6
7
8
9
#ifndef __HASH_H
#define __HASH_H

unsigned char pearson(const void *d, size_t len);
uint64_t pearson_64(const void *d, size_t len);
uint64_t fnv1_64(const void *d, size_t len);
uint64_t fnv1a_64(const void *d, size_t len);

#endif