mirror of
https://github.com/linux-msm/qrtr.git
synced 2026-04-09 14:52:32 +02:00
13 lines
286 B
C
13 lines
286 B
C
#ifndef _HASH_H_
|
|
#define _HASH_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
unsigned int hash_mem(const void *data, unsigned int len);
|
|
unsigned int hash_string(const char *value);
|
|
unsigned int hash_u32(uint32_t value);
|
|
unsigned int hash_u64(uint64_t value);
|
|
unsigned int hash_pointer(void *value);
|
|
|
|
#endif
|