json-gen-c
0.1.5
json-gen-c generate C code for json manipulation
hash.h
1
#ifndef UTILS_HASH_H
2
#define UTILS_HASH_H
3
4
#include <stddef.h>
5
6
#ifdef __cplusplus
7
extern
"C"
{
8
#endif
9
18
unsigned
int
hash_murmur(
const
char
* data,
size_t
n,
unsigned
int
seed);
19
20
#ifdef __cplusplus
21
}
22
#endif
23
24
#endif
// UTILS_HASH_H
src
utils
hash.h
Generated by
1.9.8