]> git.ipfire.org Git - thirdparty/glibc.git/blame - locale/programs/simple-hash.h
update from main archive 970214
[thirdparty/glibc.git] / locale / programs / simple-hash.h
CommitLineData
0393dfd6
RM
1/* Copyright (C) 1995, 1996 Free Software Foundation, Inc.
2
3The GNU C Library is free software; you can redistribute it and/or
4modify it under the terms of the GNU Library General Public License as
5published by the Free Software Foundation; either version 2 of the
6License, or (at your option) any later version.
7
8The GNU C Library is distributed in the hope that it will be useful,
9but WITHOUT ANY WARRANTY; without even the implied warranty of
10MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11Library General Public License for more details.
12
13You should have received a copy of the GNU Library General Public
14License along with the GNU C Library; see the file COPYING.LIB. If
15not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16Boston, MA 02111-1307, USA. */
17
18#ifndef _SIMPLE_HASH_H
19#define _SIMPLE_HASH_H
20
21#include <obstack.h>
22
23typedef struct hash_table
24{
25 unsigned long size;
26 unsigned long filled;
27 void *first;
28 void *table;
29 struct obstack mem_pool;
30}
31hash_table;
32
33
34int init_hash __P ((hash_table *htab, unsigned long int init_size));
35int delete_hash __P ((hash_table *htab));
36int insert_entry __P ((hash_table *htab, const void *key, size_t keylen,
37 void *data));
38int find_entry __P ((hash_table *htab, const void *key, size_t keylen,
39 void **result));
40int set_entry __P ((hash_table *htab, const void *key, size_t keylen,
41 void *newval));
42
43int iterate_table __P ((hash_table *htab, void **ptr,
44 const void **key, size_t *keylen, void **data));
45
46unsigned long next_prime __P ((unsigned long int seed));
47
48#endif /* simple-hash.h */