X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flibpspp%2Fhash-functions.h;h=089134b43fae16376ba9dcc80f3a8d50bf6081b2;hb=38d5e09c01ddffc98430c3c55ed3ccb821180cbf;hp=328f4deda01f901748b78fd1bdb649f023dafcb1;hpb=9a331fe64eb814ae5c1322e21717a04fb254bf65;p=pspp-builds.git diff --git a/src/libpspp/hash-functions.h b/src/libpspp/hash-functions.h index 328f4ded..089134b4 100644 --- a/src/libpspp/hash-functions.h +++ b/src/libpspp/hash-functions.h @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 1997-9, 2000 Free Software Foundation, Inc. + Copyright (C) 1997-9, 2000, 2009 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 @@ -19,10 +19,10 @@ #include -unsigned hsh_hash_bytes (const void *, size_t); -unsigned hsh_hash_string (const char *); -unsigned hsh_hash_case_string (const char *); -unsigned hsh_hash_int (int); -unsigned hsh_hash_double (double); +unsigned int hash_bytes (const void *, size_t, unsigned int basis); +unsigned int hash_string (const char *, unsigned int basis); +unsigned int hash_case_string (const char *, unsigned int basis); +unsigned int hash_int (int, unsigned int basis); +unsigned int hash_double (double, unsigned int basis); #endif /* libpspp/hash-functions.h */