hydroforth/include/hydroforth/hash.h

14 lines
279 B
C
Raw Normal View History

2023-08-04 19:42:01 +00:00
#ifndef __HF__HASH_H__
#define __HF__HASH_H__
#include <stdint.h>
typedef uint64_t hf__hash_t;
extern hf__hash_t hf__hash_mem(const unsigned char *start,
const unsigned char *const end);
extern hf__hash_t hf__hash_str(const char *str);
#endif