X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/mLib/blobdiff_plain/b5ea4de3ac1c61ef84c21f4e3ceff2181d23e456..b317b99dd61e3a00721c8e29c911b6621a275bc6:/hash.c diff --git a/hash.c b/hash.c index 9483e10..51d0eed 100644 --- a/hash.c +++ b/hash.c @@ -1,13 +1,13 @@ /* -*-c-*- * - * $Id: hash.c,v 1.3 2000/07/16 12:29:16 mdw Exp $ + * $Id: hash.c,v 1.4 2004/04/08 01:36:11 mdw Exp $ * * General hashtable infrastructure * * (c) 1999 Straylight/Edgeware */ -/*----- Licensing notice --------------------------------------------------* +/*----- Licensing notice --------------------------------------------------* * * This file is part of the mLib utilities library. * @@ -15,32 +15,18 @@ * it under the terms of the GNU Library General Public License as * published by the Free Software Foundation; either version 2 of the * License, or (at your option) any later version. - * + * * mLib is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Library General Public License for more details. - * + * * You should have received a copy of the GNU Library General Public * License along with mLib; if not, write to the Free * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, * MA 02111-1307, USA. */ -/*----- Revision history --------------------------------------------------* - * - * $Log: hash.c,v $ - * Revision 1.3 2000/07/16 12:29:16 mdw - * Change to arena `realloc' interface, to fix a design bug. - * - * Revision 1.2 2000/06/17 10:37:39 mdw - * Add support for arena management. - * - * Revision 1.1 1999/08/02 14:45:48 mdw - * Break low-level hashtable code out from sym. - * - */ - /*----- Header files ------------------------------------------------------*/ #include @@ -88,10 +74,7 @@ void hash_create(hash_table *t, size_t n) * responsibility of the implementation. */ -void hash_destroy(hash_table *t) -{ - x_free(t->a, t->v); -} +void hash_destroy(hash_table *t) { x_free(t->a, t->v); } /* --- @hash_bin@ --- * * @@ -105,9 +88,7 @@ void hash_destroy(hash_table *t) */ hash_base **hash_bin(hash_table *t, uint32 hash) -{ - return (HASH_BIN(t, hash)); -} + { return (HASH_BIN(t, hash)); } /* --- @hash_extend@ --- * *