21 lines
291 B
C
21 lines
291 B
C
/**
|
|
* Generic array
|
|
*/
|
|
#ifndef LIBDI_INCLUDE_HASH_H_
|
|
#define LIBDI_INCLUDE_HASH_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <stdlib.h>
|
|
#include <stdint.h>
|
|
|
|
uint32_t di_hash_murmur2(const uint8_t *data, size_t len);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* LIBDI_INCLUDE_HASH_H_ */
|