Adapt GDB integration to newest patches
[bpt/guile.git] / libguile / weak-vector.h
CommitLineData
a141db86
AW
1/* classes: h_files */
2
3#ifndef SCM_WEAK_VECTOR_H
4#define SCM_WEAK_VECTOR_H
5
c9647bfb 6/* Copyright (C) 1995,1996,2000,2001, 2003, 2006, 2008, 2009, 2011, 2014 Free Software Foundation, Inc.
a141db86
AW
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\f
25
26#include "libguile/__scm.h"
27
28\f
29/* Weak vectors. */
30
dc7da0be 31#define SCM_I_WVECTP(x) (SCM_HAS_TYP7 (x, scm_tc7_wvect))
a141db86 32
c9647bfb 33SCM_API SCM scm_make_weak_vector (SCM len, SCM fill);
a141db86
AW
34SCM_API SCM scm_weak_vector (SCM l);
35SCM_API SCM scm_weak_vector_p (SCM x);
c9647bfb
AW
36SCM_API SCM scm_weak_vector_length (SCM v);
37SCM_API SCM scm_weak_vector_ref (SCM v, SCM k);
38SCM_API SCM scm_weak_vector_set_x (SCM v, SCM k, SCM x);
39
40SCM_API SCM scm_c_make_weak_vector (size_t len, SCM fill);
41SCM_API int scm_is_weak_vector (SCM obj);
42SCM_API size_t scm_c_weak_vector_length (SCM vec);
43SCM_API SCM scm_c_weak_vector_ref (SCM v, size_t k);
44SCM_API void scm_c_weak_vector_set_x (SCM v, size_t k, SCM x);
a141db86
AW
45
46SCM_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*/