Tinyhash
This is a library containing multiple C implementations of hashmap.
Loading...
Searching...
No Matches
hash.h
Go to the documentation of this file.
1#ifndef __TINYHASH_COMMON_HASH_H__
2#define __TINYHASH_COMMON_HASH_H__
3
4#include <stdint.h>
5#include <stdio.h>
6
14uint32_t th_hash(uint8_t *bytes, size_t size);
15
16#endif
uint32_t th_hash(uint8_t *bytes, size_t size)
Compute an unsigned int from bytes.
Definition hash.c:16