1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
/********************************************************************
* APRX -- 2nd generation APRS iGate and digi with *
* minimal requirement of esoteric facilities or *
* libraries of any kind beyond UNIX system libc. *
* *
* (c) Matti Aarnio - OH2MQK, 2007-2014 *
* *
********************************************************************/
#ifndef KEYHASH_H
#define KEYHASH_H
extern void keyhash_init(void);
extern unsigned int keyhash(const void *s, int slen, unsigned int hash0);
extern unsigned int keyhashuc(const void *s, int slen, unsigned int hash0);
#endif
|