ToolBox Library 2.1.0
An Library containing function and class to make developing in C faster
hash.h
1#ifndef TOOLBOX_HASH_H
2#define TOOLBOX_HASH_H
3
4#include <stdint.h>
5
6__attribute__((__pure__))
7uint64_t
8hash_cstr(const char *r_p_cstr);
9
10#endif