]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - contrib/gperf/lib/hash.h
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.git] / contrib / gperf / lib / hash.h
1 // This may look like C code, but it is really -*- C++ -*-
2
3 /* 
4 Copyright (C) 1988, 1992, 2000 Free Software Foundation
5     written by Doug Lea (dl@rocky.oswego.edu)
6 */
7
8 #ifndef _hash_h
9 #define _hash_h 1
10
11 /* a hash function for char[] arrays using the
12    method described in Aho, Sethi, & Ullman, p 436. */
13 extern unsigned int hashpjw (const char *string, unsigned int len);
14
15 #endif