mmhash.h 132 B

12345678
  1. #ifndef ALGDS_HASH_H_
  2. #define ALGDS_HASH_H_
  3. #include <stdint.h>
  4. uint64_t mmhash(const void *key, int len, uint64_t seed);
  5. #endif