Files
2026-06-30 07:01:23 +02:00

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);