Avoid signed overflow and use size_t in bytevectors.c.
[bpt/guile.git] / libguile / strports.h
CommitLineData
0f2d19dd
JB
1/* classes: h_files */
2
dee01b01
DH
3#ifndef SCM_STRPORTS_H
4#define SCM_STRPORTS_H
5
7b041912 6/* Copyright (C) 1995,1996,2000,2001,2002, 2006, 2008, 2010 Free Software Foundation, Inc.
dee01b01 7 *
73be1d9e 8 * This library is free software; you can redistribute it and/or
53befeb7
NJ
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.
dee01b01 12 *
53befeb7
NJ
13 * This library is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
73be1d9e
MV
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
dee01b01 17 *
73be1d9e
MV
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
53befeb7
NJ
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21 * 02110-1301 USA
73be1d9e 22 */
dee01b01 23
0f2d19dd
JB
24\f
25
b4309c3c 26#include "libguile/__scm.h"
0f2d19dd 27
0f2d19dd 28\f
0f2d19dd 29
e87a03fc
MG
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
33b001fd 42SCM_API scm_t_bits scm_tc16_strport;
e87a03fc
MG
43
44\f
45
33b001fd
MV
46SCM_API SCM scm_mkstrport (SCM pos, SCM str, long modes, const char * caller);
47SCM_API SCM scm_strport_to_string (SCM port);
48SCM_API SCM scm_object_to_string (SCM obj, SCM printer);
49SCM_API SCM scm_call_with_output_string (SCM proc);
50SCM_API SCM scm_call_with_input_string (SCM str, SCM proc);
51SCM_API SCM scm_open_input_string (SCM str);
52SCM_API SCM scm_open_output_string (void);
53SCM_API SCM scm_get_output_string (SCM port);
54SCM_API SCM scm_c_read_string (const char *expr);
55SCM_API SCM scm_c_eval_string (const char *expr);
209b52fe 56SCM_API SCM scm_c_eval_string_in_module (const char *expr, SCM module);
33b001fd 57SCM_API SCM scm_eval_string (SCM string);
209b52fe 58SCM_API SCM scm_eval_string_in_module (SCM string, SCM module);
102dbb6f 59SCM_INTERNAL void scm_init_strports (void);
0f2d19dd 60
dee01b01 61#endif /* SCM_STRPORTS_H */
89e00824
ML
62
63/*
64 Local Variables:
65 c-file-style: "gnu"
66 End:
67*/