ripd: fix compiler warnings
[jleu-quagga.git] / lib / hash.h
blobf4b1c23eb5c0e63d9af687c0ea3f28b43e921a3a
1 /* Hash routine.
2 Copyright (C) 1998 Kunihiro Ishiguro
4 This file is part of GNU Zebra.
6 GNU Zebra is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published
8 by the Free Software Foundation; either version 2, or (at your
9 option) any later version.
11 GNU Zebra is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Zebra; see the file COPYING. If not, write to the
18 Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
21 #ifndef _ZEBRA_HASH_H
22 #define _ZEBRA_HASH_H
24 /* Default hash table size. */
25 #define HASHTABSIZE 1024
27 struct hash_backet
29 /* Linked list. */
30 struct hash_backet *next;
32 /* Hash key. */
33 unsigned int key;
35 /* Data. */
36 void *data;
39 struct hash
41 /* Hash backet. */
42 struct hash_backet **index;
44 /* Hash table size. */
45 unsigned int size;
47 /* Key make function. */
48 unsigned int (*hash_key) (void *);
50 /* Data compare function. */
51 int (*hash_cmp) (const void *, const void *);
53 /* Backet alloc. */
54 unsigned long count;
57 extern struct hash *hash_create (unsigned int (*) (void *),
58 int (*) (const void *, const void *));
59 extern struct hash *hash_create_size (unsigned int, unsigned int (*) (void *),
60 int (*) (const void *, const void *));
62 extern void *hash_get (struct hash *, void *, void * (*) (void *));
63 extern void *hash_alloc_intern (void *);
64 extern void *hash_lookup (struct hash *, void *);
65 extern void *hash_release (struct hash *, void *);
67 extern void hash_iterate (struct hash *,
68 void (*) (struct hash_backet *, void *), void *);
70 extern void hash_clean (struct hash *, void (*) (void *));
71 extern void hash_free (struct hash *);
73 #endif /* _ZEBRA_HASH_H */