pike.git
/
src
/
hashtable.c
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/hashtable.c:1:
/* || This file is part of Pike. For copyright information see COPYRIGHT. || Pike is distributed under GPL, LGPL and MPL. See the file COPYING || for more information.
-
||
$Id: hashtable.c,v 1.14 2002/10/11 01:39:31 nilsson Exp $
+
||
$Id$
*/ #include "global.h" #include "hashtable.h" #include "stralloc.h" #include "stuff.h" #include "pike_error.h"
-
RCSID("
$Id: hashtable.c,v 1.14 2002/10/11 01:39:31 nilsson Exp $
");
+
RCSID("
$Id$
");
static size_t gobble(struct pike_string *s) { size_t i; i=my_hash_string(s); i+=i >> 3; i+=i >> 7; i+=i >> 12; return i; }