diff options
author | nirav <nirav@teisuu.com> | 2020-11-29 13:16:53 +0000 |
---|---|---|
committer | nirav <nirav@teisuu.com> | 2020-11-29 13:16:53 +0000 |
commit | 9cb655becbdb58c7dfe9f6e72f8915149c1fce61 (patch) | |
tree | a4c0aefb53dca32a14488c70ccbea41926261699 /hash.h | |
download | hash-master.tar.gz hash-master.zip |
Diffstat (limited to 'hash.h')
-rw-r--r-- | hash.h | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -0,0 +1,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 |