blobmsg: make arrays structually the same as tables - simplifies library user code
[project/libubox.git] / hash.h
1 #ifndef _HASH_H__
2 #define _HASH_H__
3
4 #include <stdint.h>
5
6 uint32_t hash_murmur2(const void * key, int len);
7
8 #endif