1 2 3 4 5 6 7 8 9 10 11
#ifndef _HASH_H #define _HASH_H #include <stdint.h> #include "s8.h" uint32_t hash_name(const char *s); uint32_t hash_name_s8(struct s8 s); #endif