xref: /memcached-1.4.29/jenkins_hash.h (revision 05ca809c)
1 #ifndef JENKINS_HASH_H
2 #define    JENKINS_HASH_H
3 
4 #ifdef    __cplusplus
5 extern "C" {
6 #endif
7 
8 uint32_t jenkins_hash(const void *key, size_t length);
9 
10 #ifdef    __cplusplus
11 }
12 #endif
13 
14 #endif    /* JENKINS_HASH_H */
15 
16