Print the faulty object upon invalid-keyword errors.
[bpt/guile.git] / libguile / strports.h
1 /* classes: h_files */
2
3 #ifndef SCM_STRPORTS_H
4 #define SCM_STRPORTS_H
5
6 /* Copyright (C) 1995,1996,2000,2001,2002, 2006, 2008, 2010 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 \f
25
26 #include "libguile/__scm.h"
27
28 \f
29
30
31 #define SCM_STRPORTP(x) (!SCM_IMP (x) && \
32 (SCM_TYP16 (x) == scm_tc16_strport))
33 #define SCM_OPSTRPORTP(x) (SCM_STRPORTP (x) && \
34 (SCM_CELL_WORD_0 (x) & SCM_OPN))
35 #define SCM_OPINSTRPORTP(x) (SCM_OPSTRPORTP (x) && \
36 (SCM_CELL_WORD_0 (x) & SCM_RDNG))
37 #define SCM_OPOUTSTRPORTP(x) (SCM_OPSTRPORTP (x) && \
38 (SCM_CELL_WORD_0 (x) & SCM_WRTNG))
39
40 \f
41
42 SCM_API scm_t_bits scm_tc16_strport;
43
44 \f
45
46 SCM_API SCM scm_mkstrport (SCM pos, SCM str, long modes, const char * caller);
47 SCM_API SCM scm_strport_to_string (SCM port);
48 SCM_API SCM scm_object_to_string (SCM obj, SCM printer);
49 SCM_API SCM scm_call_with_output_string (SCM proc);
50 SCM_API SCM scm_call_with_input_string (SCM str, SCM proc);
51 SCM_API SCM scm_open_input_string (SCM str);
52 SCM_API SCM scm_open_output_string (void);
53 SCM_API SCM scm_get_output_string (SCM port);
54 SCM_API SCM scm_c_read_string (const char *expr);
55 SCM_API SCM scm_c_eval_string (const char *expr);
56 SCM_API SCM scm_c_eval_string_in_module (const char *expr, SCM module);
57 SCM_API SCM scm_eval_string (SCM string);
58 SCM_API SCM scm_eval_string_in_module (SCM string, SCM module);
59 SCM_INTERNAL void scm_init_strports (void);
60
61 #endif /* SCM_STRPORTS_H */
62
63 /*
64 Local Variables:
65 c-file-style: "gnu"
66 End:
67 */