Home | History | Annotate | Download | only in crc
      1 #ifndef FIO_MURMUR3_H
      2 #define FIO_MURMUR3_H
      3 
      4 #include <inttypes.h>
      5 
      6 uint32_t murmurhash3(const void *key, uint32_t len, uint32_t seed);
      7 
      8 #endif
      9