summaryrefslogtreecommitdiff
path: root/src/dged/hash.h
blob: 60b6d6ad89fb318e01f7c9059a0d90a16ac72a81 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef _HASH_H
#define _HASH_H

#include <stdint.h>

#include "s8.h"

uint32_t hash_name(const char *s);
uint32_t hash_name_s8(struct s8 s);

#endif