* numbers.c (num2long): As a software archeologist, I'm proud of
[bpt/guile.git] / libguile / gh.h
CommitLineData
7dc6e754 1/* Copyright (C) 1995,1996,1997,1998 Free Software Foundation, Inc.
ee2a8b9b
JB
2 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2, or (at your option)
6 * any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this software; see the file COPYING. If not, write to
82892bed
JB
15 * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
16 * Boston, MA 02111-1307 USA
ee2a8b9b
JB
17 *
18 * As a special exception, the Free Software Foundation gives permission
19 * for additional uses of the text contained in its release of GUILE.
20 *
21 * The exception is that, if you link the GUILE library with other files
22 * to produce an executable, this does not by itself cause the
23 * resulting executable to be covered by the GNU General Public License.
24 * Your use of that executable is in no way restricted on account of
25 * linking the GUILE library code into it.
26 *
27 * This exception does not however invalidate any other reasons why
28 * the executable file might be covered by the GNU General Public License.
29 *
30 * This exception applies only to the code released by the
31 * Free Software Foundation under the name GUILE. If you copy
32 * code from other Free Software Foundation releases into a copy of
33 * GUILE, as the General Public License permits, the exception does
34 * not apply to the code that you add in this way. To avoid misleading
35 * anyone as to the status of such modified files, you must delete
36 * this exception notice from them.
37 *
38 * If you write modifications of your own for GUILE, it is your choice
39 * whether to permit this exception to apply to your modifications.
82892bed 40 * If you do not wish that, delete this exception notice. */
ee2a8b9b
JB
41\f
42
43#ifndef __GH_H
44#define __GH_H
45
18daf95b
AG
46#ifdef __cplusplus
47extern "C" {
48#endif
49
ee2a8b9b
JB
50#include <stdio.h>
51
52#include <libguile.h>
53
54/* gcc has extern inline functions that are basically as fast as macros */
55#ifdef __GNUC__
56# define INL inline
57# define EXTINL extern inline
58#else
59# define INL
60#define EXTINL
61#endif /* __GNUC__ */
62
47d0411b 63void gh_enter(int argc, char *argv[], void (*c_main_prog)(int, char **));
5aadf8c1 64void gh_repl(int argc, char *argv[]);
ee2a8b9b
JB
65SCM gh_catch(SCM tag, scm_catch_body_t body, void *body_data,
66 scm_catch_handler_t handler, void *handler_data);
67
ee2a8b9b 68SCM gh_standard_handler(void *data, SCM tag, SCM throw_args);
ee2a8b9b
JB
69
70SCM gh_eval_str(char *scheme_code);
71SCM gh_eval_str_with_catch(char *scheme_code, scm_catch_handler_t handler);
72SCM gh_eval_str_with_standard_handler(char *scheme_code);
73SCM gh_eval_str_with_stack_saving_handler(char *scheme_code);
74
75SCM gh_eval_file(char *fname);
e5eece74 76#define gh_load(fname) gh_eval_file(fname)
ee2a8b9b
JB
77SCM gh_eval_file_with_catch(char *scheme_code, scm_catch_handler_t handler);
78SCM gh_eval_file_with_standard_handler(char *scheme_code);
79
80#define gh_defer_ints() SCM_DEFER_INTS
81#define gh_allow_ints() SCM_ALLOW_INTS
82
83SCM gh_new_procedure(char *proc_name, SCM (*fn)(),
84 int n_required_args, int n_optional_args, int varp);
47d0411b
JB
85SCM gh_new_procedure0_0(char *proc_name, SCM (*fn)(void));
86SCM gh_new_procedure0_1(char *proc_name, SCM (*fn)(SCM));
87SCM gh_new_procedure0_2(char *proc_name, SCM (*fn)(SCM, SCM));
88SCM gh_new_procedure1_0(char *proc_name, SCM (*fn)(SCM));
89SCM gh_new_procedure1_1(char *proc_name, SCM (*fn)(SCM, SCM));
90SCM gh_new_procedure1_2(char *proc_name, SCM (*fn)(SCM, SCM, SCM));
91SCM gh_new_procedure2_0(char *proc_name, SCM (*fn)(SCM, SCM));
92SCM gh_new_procedure2_1(char *proc_name, SCM (*fn)(SCM, SCM, SCM));
93SCM gh_new_procedure2_2(char *proc_name, SCM (*fn)(SCM, SCM, SCM, SCM));
94SCM gh_new_procedure3_0(char *proc_name, SCM (*fn)(SCM, SCM, SCM));
95SCM gh_new_procedure4_0(char *proc_name, SCM (*fn)(SCM, SCM, SCM, SCM));
96SCM gh_new_procedure5_0(char *proc_name, SCM (*fn)(SCM, SCM, SCM, SCM, SCM));
ee2a8b9b
JB
97
98/* C to Scheme conversion */
88040021 99SCM gh_int2scmb(int x); /* this is being phased out */
ee2a8b9b
JB
100SCM gh_bool2scm(int x);
101SCM gh_int2scm(int x);
102SCM gh_ulong2scm(unsigned long x);
103SCM gh_long2scm(long x);
104SCM gh_double2scm(double x);
105SCM gh_char2scm(char c);
106SCM gh_str2scm(char *s, int len);
107SCM gh_str02scm(char *s);
108void gh_set_substr(char *src, SCM dst, int start, int len);
109SCM gh_symbol2scm(char *symbol_str);
b774ee1f 110SCM gh_ints2scm(int *d, int n);
3ffc7a36
MD
111SCM gh_chars2byvect(char *d, int n);
112SCM gh_shorts2svect(short *d, int n);
b774ee1f
MD
113SCM gh_longs2ivect(long *d, int n);
114SCM gh_ulongs2uvect(unsigned long *d, int n);
f3a2c4cf
MD
115SCM gh_doubles2scm(double *d, int n);
116#ifdef SCM_FLOATS
3ffc7a36
MD
117#ifdef SCM_SINGLES
118SCM gh_floats2fvect(float *d, int n);
119#endif
f3a2c4cf
MD
120SCM gh_doubles2dvect(double *d, int n);
121#endif
ee2a8b9b
JB
122
123
124/* Scheme to C conversion */
125int gh_scm2bool(SCM obj);
126int gh_scm2int(SCM obj);
127unsigned long gh_scm2ulong(SCM obj);
128long gh_scm2long(SCM obj);
129char gh_scm2char(SCM obj);
130double gh_scm2double(SCM obj);
131char *gh_scm2newstr(SCM str, int *lenp);
132void gh_get_substr(SCM src, char *dst, int start, int len);
133char *gh_symbol2newstr(SCM sym, int *lenp);
3ffc7a36
MD
134char *gh_scm2chars(SCM vector, char *result);
135short *gh_scm2shorts(SCM vector, short *result);
136long *gh_scm2longs(SCM vector, long *result);
137float *gh_scm2floats(SCM vector, float *result);
138double *gh_scm2doubles(SCM vector, double *result);
ee2a8b9b
JB
139
140/* type predicates: tell you if an SCM object has a given type */
141int gh_boolean_p(SCM val);
142int gh_symbol_p(SCM val);
143int gh_char_p(SCM val);
144int gh_vector_p(SCM val);
145int gh_pair_p(SCM val);
146int gh_number_p(SCM val);
147int gh_string_p(SCM val);
148int gh_procedure_p(SCM val);
149int gh_list_p(SCM val);
150int gh_inexact_p(SCM val);
151int gh_exact_p(SCM val);
152
153/* more predicates */
154int gh_eq_p(SCM x, SCM y);
155int gh_eqv_p(SCM x, SCM y);
156int gh_equal_p(SCM x, SCM y);
7fee59bd
MG
157int gh_string_equal_p(SCM s1, SCM s2);
158int gh_null_p(SCM l);
ee2a8b9b
JB
159
160/* standard Scheme procedures available from C */
161
7fee59bd
MG
162#define gh_not(x) scm_not(x)
163
ee2a8b9b
JB
164SCM gh_define(char *name, SCM val);
165
e5eece74
MG
166/* vector manipulation routines */
167/* note that gh_vector() does not behave quite like the Scheme (vector
168 obj1 obj2 ...), because the interpreter engine does not pass the
169 data element by element, but rather as a list. thus, gh_vector()
170 ends up being identical to gh_list_to_vector() */
171#define gh_vector(ls) scm_vector(ls)
172SCM gh_make_vector(SCM length, SCM val);
956328d2 173SCM gh_vector_set_x(SCM vec, SCM pos, SCM val);
e5eece74 174SCM gh_vector_ref(SCM vec, SCM pos);
88040021
JB
175unsigned long gh_vector_length (SCM v);
176unsigned long gh_uniform_vector_length (SCM v);
177SCM gh_uniform_vector_ref (SCM v, SCM ilist);
e5eece74
MG
178#define gh_list_to_vector(ls) scm_vector(ls)
179#define gh_vector_to_list(v) scm_vector_to_list(ls)
ee2a8b9b 180
35379308
JB
181SCM gh_lookup (char *sname);
182SCM gh_module_lookup (SCM vector, char *sname);
183
ee2a8b9b
JB
184SCM gh_cons(SCM x, SCM y);
185#define gh_list scm_listify
92396c0a 186unsigned long gh_length(SCM l);
7fee59bd
MG
187SCM gh_append(SCM args);
188SCM gh_append2(SCM l1, SCM l2);
189SCM gh_append3(SCM l1, SCM l2, SCM l3);
190SCM gh_append4(SCM l1, SCM l2, SCM l3, SCM l4);
191#define gh_reverse(ls) scm_reverse(ls)
192#define gh_list_tail(ls, k) scm_list_tail(ls, k)
193#define gh_list_ref(ls, k) scm_list_ref(ls, k)
194#define gh_memq(x, ls) scm_memq(x, ls)
38d0f691
MD
195#define gh_memv(x, ls) scm_memv(x, ls)
196#define gh_member(x, ls) scm_member(x, ls)
7fee59bd
MG
197#define gh_assq(x, alist) scm_assq(x, alist)
198#define gh_assv(x, alist) scm_assv(x, alist)
199#define gh_assoc(x, alist) scm_assoc(x, alist)
ee2a8b9b
JB
200
201SCM gh_car(SCM x);
202SCM gh_cdr(SCM x);
203
204SCM gh_caar(SCM x);
205SCM gh_cadr(SCM x);
206SCM gh_cdar(SCM x);
207SCM gh_cddr(SCM x);
208
209SCM gh_caaar(SCM x);
210SCM gh_caadr(SCM x);
211SCM gh_cadar(SCM x);
212SCM gh_caddr(SCM x);
213SCM gh_cdaar(SCM x);
214SCM gh_cdadr(SCM x);
215SCM gh_cddar(SCM x);
216SCM gh_cdddr(SCM x);
217
7fee59bd
MG
218SCM gh_set_car_x(SCM pair, SCM value);
219SCM gh_set_cdr_x(SCM pair, SCM value);
220
221
ee2a8b9b
JB
222/* Calling Scheme functions from C. */
223SCM gh_apply (SCM proc, SCM ls);
224SCM gh_call0 (SCM proc);
225SCM gh_call1 (SCM proc, SCM arg);
226SCM gh_call2 (SCM proc, SCM arg1, SCM arg2);
227SCM gh_call3 (SCM proc, SCM arg1, SCM arg2, SCM arg3);
228
229/* reading and writing Scheme objects. */
230void gh_display (SCM x);
38d0f691 231void gh_write (SCM x);
ee2a8b9b
JB
232void gh_newline (void);
233
234/* void gh_gc_mark(SCM) : mark an SCM as in use. */
235/* void gh_defer_ints() : don't interrupt code section. */
236/* void gh_allow_ints() : see gh_defer_ints(). */
237/* void gh_new_cell(SCM, int tag) : initialize SCM to be of type 'tag' */
238/* int gh_type_p(SCM, tag) : test if SCM is of type 'tag' */
239/* SCM gh_intern(char*) : get symbol corresponding to c-string.*/
240/* void gh_set_ext_data(SCM, void*) : set extension data on SCM */
241/* void *gh_get_ext_data(SCM) : return extension data from SCM. */
242
243/* void gh_assert(int cond, char *msg, SCM obj); */
244
18daf95b
AG
245#ifdef __cplusplus
246}
247#endif
ee2a8b9b
JB
248
249#endif /* __GH_H */