OpenMPI  0.1.1
hash.h
1 /*
2  * this is taken from
3  * 'http://burtleburtle.net/bob/hash/evahash.html'
4  */
5 
6 #ifndef _HASH_H
7 #define _HASH_H
8 
9 #ifdef __cplusplus
10 # define EXTERN extern "C"
11 #else
12 # define EXTERN extern
13 #endif
14 
15 EXTERN unsigned int vt_hash(register unsigned char* k, unsigned int length, unsigned int initval);
16 
17 #endif /* HASH_H */
18