1 /*
2  *	aprsc
3  *
4  *	(c) Matti Aarnio, OH2MQK, <oh2mqk@sral.fi>
5  *
6  *     This program is licensed under the BSD license, which can be found
7  *     in the file LICENSE.
8  *
9  */
10 
11 #ifndef KEYHASH_H
12 #define KEYHASH_H
13 
14 extern void     keyhash_init(void);
15 extern uint32_t keyhash(const void *s, int slen, uint32_t hash0);
16 extern uint32_t keyhashuc(const void *s, int slen, uint32_t hash0);
17 
18 #endif
19