8 lines
116 B
C
8 lines
116 B
C
#ifndef FIO_FNV_H
|
|
#define FIO_FNV_H
|
|
|
|
#include <inttypes.h>
|
|
|
|
uint64_t fnv(const void *, uint32_t, uint64_t);
|
|
|
|
#endif
|