8 lines
121 B
C
8 lines
121 B
C
#ifndef HASH_FNV_H
|
|
#define HASH_FNV_H
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
uint32_t hasher(void *data, size_t len);
|