Add a hash function for 64-bit int to improve the performance of val_loc_map in FuncN...
[c11tester.git] / hashfunction.h
1 #ifndef __HASH_FUNCTION__
2 #define __HASH_FUNCTION__
3
4 #include <stdint.h>
5
6 unsigned int int64_hash(uint64_t key);
7
8 #endif