summaryrefslogtreecommitdiff
path: root/jenkins_hash.h
blob: b44fba1eef23b4d948df88ec83335c6a4e3123ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef JENKINS_HASH_H
#define    JENKINS_HASH_H

#ifdef    __cplusplus
extern "C" {
#endif

uint32_t jenkins_hash(const void *key, size_t length);

#ifdef    __cplusplus
}
#endif

#endif    /* JENKINS_HASH_H */