(concatenate, concatenate!, count, filter-map, lset-adjoin): More tests.
[bpt/guile.git] / libguile / deprecation.h
... / ...
CommitLineData
1/* classes: h_files */
2
3#ifndef SCM_DEPRECATION_H
4#define SCM_DEPRECATION_H
5
6/* Copyright (C) 2001 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
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
12 *
13 * This library is distributed in the hope that it will be useful,
14 * but 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 */
22
23\f
24
25#include "libguile/__scm.h"
26
27\f
28
29#if (SCM_ENABLE_DEPRECATED == 1)
30
31/* These functions are _not_ deprecated, but we exclude them along
32 with the really deprecated features to be sure that no-one is
33 trying to emit deprecation warnings when libguile is supposed to be
34 clean of them.
35*/
36
37SCM_API void scm_c_issue_deprecation_warning (const char *msg);
38SCM_API void scm_c_issue_deprecation_warning_fmt (const char *msg, ...);
39SCM_API SCM scm_issue_deprecation_warning (SCM msgs);
40
41#endif
42
43SCM_API SCM scm_include_deprecated_features (void);
44SCM_API void scm_init_deprecation (void);
45
46#endif /* SCM_DEPRECATION_H */
47
48/*
49 Local Variables:
50 c-file-style: "gnu"
51 End:
52*/