summaryrefslogtreecommitdiff
path: root/qcom/qrtr/src/hash.h
blob: 5b004b5f10456022de912e2f5792434841e85608 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#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