1 /* classes: h_files */
2 
3 #ifndef SCM_WEAK_VECTOR_H
4 #define SCM_WEAK_VECTOR_H
5 
6 /* Copyright (C) 1995,1996,2000,2001, 2003, 2006, 2008, 2009, 2011, 2014 Free Software Foundation, Inc.
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public License
10  * as published by the Free Software Foundation; either version 3 of
11  * the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful, but
14  * WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21  * 02110-1301 USA
22  */
23 
24 
25 
26 #include "libguile/__scm.h"
27 
28 
29 /* Weak vectors.  */
30 
31 #define SCM_I_WVECTP(x) (SCM_HAS_TYP7 (x, scm_tc7_wvect))
32 
33 SCM_API SCM scm_make_weak_vector (SCM len, SCM fill);
34 SCM_API SCM scm_weak_vector (SCM l);
35 SCM_API SCM scm_weak_vector_p (SCM x);
36 SCM_API SCM scm_weak_vector_length (SCM v);
37 SCM_API SCM scm_weak_vector_ref (SCM v, SCM k);
38 SCM_API SCM scm_weak_vector_set_x (SCM v, SCM k, SCM x);
39 
40 SCM_API SCM scm_c_make_weak_vector (size_t len, SCM fill);
41 SCM_API int scm_is_weak_vector (SCM obj);
42 SCM_API size_t scm_c_weak_vector_length (SCM vec);
43 SCM_API SCM scm_c_weak_vector_ref (SCM v, size_t k);
44 SCM_API void scm_c_weak_vector_set_x (SCM v, size_t k, SCM x);
45 
46 SCM_INTERNAL void scm_init_weak_vectors (void);
47 
48 
49 #endif  /* SCM_WEAK_VECTOR_H */
50 
51 /*
52   Local Variables:
53   c-file-style: "gnu"
54   End:
55 */
56