summaryrefslogtreecommitdiff
path: root/os/include/hash-djb2.h
blob: 413222ebba54823ade7c5edbaae02d4755020fda (plain)
1
2
3
4
5
6
7
8
#ifndef __HASH_DJB2_H__
#define __HASH_DJB2_H__

#include <unistd.h>

uint32_t hash_djb2(const uint8_t * str, ssize_t max);

#endif