9 lines
106 B
C
9 lines
106 B
C
#ifndef HASH_H_
|
|
#define HASH_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
extern uint64_t hash_string(const char *s);
|
|
|
|
#endif
|