fasthash-sys-fork 0.4.2

A suite of non-cryptographic hash functions for Rust.
Documentation
1
2
3
4
5
6
7
8
9
#ifndef _PENGYHASH_H
#define _PENGYHASH_H

#include <stdint.h>
#include <string.h>

uint64_t pengyhash(const void *p, size_t size, uint32_t seed);

#endif