Blame


1 8a45b177 2002-03-14 alex /*
2 8a45b177 2002-03-14 alex * ngIRCd -- The Next Generation IRC Daemon
3 8a45b177 2002-03-14 alex * Copyright (c)2001,2002 by Alexander Barton (alex@barton.de)
4 8a45b177 2002-03-14 alex *
5 c7f07523 2002-12-12 alex * This program is free software; you can redistribute it and/or modify
6 c7f07523 2002-12-12 alex * it under the terms of the GNU General Public License as published by
7 c7f07523 2002-12-12 alex * the Free Software Foundation; either version 2 of the License, or
8 c7f07523 2002-12-12 alex * (at your option) any later version.
9 c7f07523 2002-12-12 alex * Please read the file COPYING, README and AUTHORS for more information.
10 8a45b177 2002-03-14 alex *
11 61966a60 2006-10-06 fw * $Id: hash.h,v 1.6 2006/10/06 21:23:47 fw Exp $
12 8a45b177 2002-03-14 alex *
13 c7f07523 2002-12-12 alex * Hash calculation (header)
14 8a45b177 2002-03-14 alex */
15 8a45b177 2002-03-14 alex
16 8a45b177 2002-03-14 alex
17 8a45b177 2002-03-14 alex #ifndef __hash_h__
18 8a45b177 2002-03-14 alex #define __hash_h__
19 8a45b177 2002-03-14 alex
20 61966a60 2006-10-06 fw GLOBAL UINT32 Hash PARAMS((const char *String ));
21 8a45b177 2002-03-14 alex
22 b422b118 2002-03-14 alex
23 8a45b177 2002-03-14 alex #endif
24 8a45b177 2002-03-14 alex
25 8a45b177 2002-03-14 alex
26 8a45b177 2002-03-14 alex /* -eof- */