maintainer changed: was lord, now jimb; first import
[bpt/guile.git] / libguile / hashtab.h
CommitLineData
0f2d19dd
JB
1/* classes: h_files */
2
3#ifndef HASHTABH
4#define HASHTABH
5/* Copyright (C) 1995,1996 Free Software Foundation, Inc.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2, or (at your option)
10 * any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this software; see the file COPYING. If not, write to
19 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
20 *
21 * As a special exception, the Free Software Foundation gives permission
22 * for additional uses of the text contained in its release of GUILE.
23 *
24 * The exception is that, if you link the GUILE library with other files
25 * to produce an executable, this does not by itself cause the
26 * resulting executable to be covered by the GNU General Public License.
27 * Your use of that executable is in no way restricted on account of
28 * linking the GUILE library code into it.
29 *
30 * This exception does not however invalidate any other reasons why
31 * the executable file might be covered by the GNU General Public License.
32 *
33 * This exception applies only to the code released by the
34 * Free Software Foundation under the name GUILE. If you copy
35 * code from other Free Software Foundation releases into a copy of
36 * GUILE, as the General Public License permits, the exception does
37 * not apply to the code that you add in this way. To avoid misleading
38 * anyone as to the status of such modified files, you must delete
39 * this exception notice from them.
40 *
41 * If you write modifications of your own for GUILE, it is your choice
42 * whether to permit this exception to apply to your modifications.
43 * If you do not wish that, delete this exception notice.
44 */
45\f
46
47
48\f
49#ifdef __STDC__
50extern SCM scm_hash_fn_get_handle (SCM table, SCM obj, unsigned int (*hash_fn)(), SCM (*assoc_fn)(), void * closure);
51extern SCM scm_hash_fn_create_handle_x (SCM table, SCM obj, SCM init, unsigned int (*hash_fn)(), SCM (*assoc_fn)(), void * closure);
52extern SCM scm_hash_fn_ref (SCM table, SCM obj, SCM dflt, unsigned int (*hash_fn)(), SCM (*assoc_fn)(), void * closure);
53extern SCM scm_hash_fn_set_x (SCM table, SCM obj, SCM val, unsigned int (*hash_fn)(), SCM (*assoc_fn)(), void * closure);
54extern SCM scm_hash_fn_remove_x (SCM table,
55 SCM obj,
56 unsigned int (*hash_fn)(),
57 SCM (*assoc_fn)(),
58 SCM (*delete_fn)(),
59 void * closure);
60extern SCM scm_hashq_get_handle (SCM table, SCM obj);
61extern SCM scm_hashq_create_handle_x (SCM table, SCM obj, SCM init);
62extern SCM scm_hashq_ref (SCM table, SCM obj, SCM dflt);
63extern SCM scm_hashq_set_x (SCM table, SCM obj, SCM val);
64extern SCM scm_hashq_remove_x (SCM table, SCM obj);
65extern SCM scm_hashv_get_handle (SCM table, SCM obj);
66extern SCM scm_hashv_create_handle_x (SCM table, SCM obj, SCM init);
67extern SCM scm_hashv_ref (SCM table, SCM obj, SCM dflt);
68extern SCM scm_hashv_set_x (SCM table, SCM obj, SCM val);
69extern SCM scm_hashv_remove_x (SCM table, SCM obj);
70extern SCM scm_hash_get_handle (SCM table, SCM obj);
71extern SCM scm_hash_create_handle_x (SCM table, SCM obj, SCM init);
72extern SCM scm_hash_ref (SCM table, SCM obj, SCM dflt);
73extern SCM scm_hash_set_x (SCM table, SCM obj, SCM val);
74extern SCM scm_hash_remove_x (SCM table, SCM obj);
75extern SCM scm_hashx_get_handle (SCM hash, SCM assoc, SCM table, SCM obj);
76extern SCM scm_hashx_create_handle_x (SCM hash, SCM assoc, SCM table, SCM obj, SCM init);
77extern SCM scm_hashx_ref (SCM hash, SCM assoc, SCM table, SCM obj, SCM dflt);
78extern SCM scm_hashx_set_x (SCM hash, SCM assoc, SCM table, SCM obj, SCM val);
79extern SCM scm_hashx_remove_x (SCM hash, SCM assoc, SCM delete, SCM table, SCM obj);
80extern void scm_init_hashtab (void);
81
82#else /* STDC */
83extern SCM scm_hash_fn_get_handle ();
84extern SCM scm_hash_fn_create_handle_x ();
85extern SCM scm_hash_fn_ref ();
86extern SCM scm_hash_fn_set_x ();
87extern SCM scm_hash_fn_remove_x ();
88extern SCM scm_hashq_get_handle ();
89extern SCM scm_hashq_create_handle_x ();
90extern SCM scm_hashq_ref ();
91extern SCM scm_hashq_set_x ();
92extern SCM scm_hashq_remove_x ();
93extern SCM scm_hashv_get_handle ();
94extern SCM scm_hashv_create_handle_x ();
95extern SCM scm_hashv_ref ();
96extern SCM scm_hashv_set_x ();
97extern SCM scm_hashv_remove_x ();
98extern SCM scm_hash_get_handle ();
99extern SCM scm_hash_create_handle_x ();
100extern SCM scm_hash_ref ();
101extern SCM scm_hash_set_x ();
102extern SCM scm_hash_remove_x ();
103extern SCM scm_hashx_get_handle ();
104extern SCM scm_hashx_create_handle_x ();
105extern SCM scm_hashx_ref ();
106extern SCM scm_hashx_set_x ();
107extern SCM scm_hashx_remove_x ();
108extern void scm_init_hashtab ();
109
110#endif /* STDC */
111
112
113
114
115
116
117
118#endif /* HASHTABH */