File: lookupa.h

package info (click to toggle)
openggsn 0.92-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 856 kB
  • ctags: 1,230
  • sloc: ansic: 10,760; sh: 97; makefile: 31
file content (29 lines) | stat: -rw-r--r-- 832 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
------------------------------------------------------------------------------
By Bob Jenkins, September 1996.
lookupa.h, a hash function for table lookup, same function as lookup.c.
Use this code in any way you wish.  Public Domain.  It has no warranty.
Source is http://burtleburtle.net/bob/c/lookupa.h
------------------------------------------------------------------------------
*/

/* Uncommented by Jens Jakobsen 20020717 
#ifndef STANDARD
#include "standard.h"
#endif
*/

#ifndef LOOKUPA
#define LOOKUPA

typedef unsigned long int ub4;	/* unsigned 4-byte quantities */
typedef unsigned char ub1;

#define CHECKSTATE 8
#define hashsize(n) ((ub4)1<<(n))
#define hashmask(n) (hashsize(n)-1)

ub4 lookup( /*_ ub1 *k, ub4 length, ub4 level _*/ );
void checksum( /*_ ub1 *k, ub4 length, ub4 *state _*/ );

#endif /* LOOKUPA */