File: keyhash.h

package info (click to toggle)
aprx 2.9.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,608 kB
  • sloc: ansic: 15,802; sh: 544; makefile: 173
file content (17 lines) | stat: -rw-r--r-- 797 bytes parent folder | download | duplicates (6)
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