summaryrefslogtreecommitdiffstats
path: root/intl/hash-string.h
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>2001-06-07 20:02:28 +0000
committerThomas Roessler <roessler@does-not-exist.org>2001-06-07 20:02:28 +0000
commitc6e7aa7f7b446934dada7ce6442f8b0d188f8b52 (patch)
tree2a06ae97be842ddce1266cf4ee303693de7d8339 /intl/hash-string.h
parentcfb626b78e72d7a421266d245f29453e6f24117f (diff)
Gettext update.
Diffstat (limited to 'intl/hash-string.h')
-rw-r--r--intl/hash-string.h20
1 files changed, 9 insertions, 11 deletions
diff --git a/intl/hash-string.h b/intl/hash-string.h
index e4d2fd71..37d4ce1a 100644
--- a/intl/hash-string.h
+++ b/intl/hash-string.h
@@ -1,6 +1,5 @@
-/* $Id$ */
-/* Implements a string hashing function.
- Copyright (C) 1995, 1997 Free Software Foundation, Inc.
+/* Description of GNU message catalog format: string hashing function.
+ Copyright (C) 1995, 1997, 1998, 2000, 2001 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -12,10 +11,9 @@
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
- You should have received a copy of the GNU Library General Public
- License along with the GNU C Library; see the file COPYING.LIB. If not,
- write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- Boston, MA 02111-1307, USA. */
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software Foundation,
+ Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
/* @@ end of prolog @@ */
@@ -34,9 +32,9 @@
/* Defines the so called `hashpjw' function by P.J. Weinberger
[see Aho/Sethi/Ullman, COMPILERS: Principles, Techniques and Tools,
1986, 1987 Bell Telephone Laboratories, Inc.] */
-static unsigned long hash_string PARAMS ((const char *__str_param));
+static unsigned long int hash_string PARAMS ((const char *__str_param));
-static inline unsigned long
+static inline unsigned long int
hash_string (str_param)
const char *str_param;
{
@@ -48,8 +46,8 @@ hash_string (str_param)
while (*str != '\0')
{
hval <<= 4;
- hval += (unsigned long) *str++;
- g = hval & ((unsigned long) 0xf << (HASHWORDBITS - 4));
+ hval += (unsigned long int) *str++;
+ g = hval & ((unsigned long int) 0xf << (HASHWORDBITS - 4));
if (g != 0)
{
hval ^= g >> (HASHWORDBITS - 8);