diff options
author | Keisuke Nishida <kxn30@po.cwru.edu> | 2001-06-26 15:46:40 +0000 |
---|---|---|
committer | Keisuke Nishida <kxn30@po.cwru.edu> | 2001-06-26 15:46:40 +0000 |
commit | fdc2839563bd8c821221a4869f27255ae77f757b (patch) | |
tree | 63bc043598fe6d9c2cac3d3c7251898cc306f5cd /libguile/eval.h | |
parent | 36284627919a6968174b5f17369349187a2b4b1b (diff) | |
download | guile-fdc2839563bd8c821221a4869f27255ae77f757b.tar.gz |
* eval.c (scm_call_0, scm_call_1, scm_call_2, scm_call_3,
scm_apply_0, scm_apply_1, scm_apply_2, scm_apply_3): New functions.
Diffstat (limited to 'libguile/eval.h')
-rw-r--r-- | libguile/eval.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libguile/eval.h b/libguile/eval.h index 133d8b4c2..35de8a6b2 100644 --- a/libguile/eval.h +++ b/libguile/eval.h @@ -231,6 +231,14 @@ extern SCM scm_m_at_call_with_values (SCM xorig, SCM env); extern int scm_badargsp (SCM formals, SCM args); extern SCM scm_ceval (SCM x, SCM env); extern SCM scm_deval (SCM x, SCM env); +extern SCM scm_call_0 (SCM proc); +extern SCM scm_call_1 (SCM proc, SCM arg1); +extern SCM scm_call_2 (SCM proc, SCM arg1, SCM arg2); +extern SCM scm_call_3 (SCM proc, SCM arg1, SCM arg2, SCM arg3); +extern SCM scm_apply_0 (SCM proc, SCM args); +extern SCM scm_apply_1 (SCM proc, SCM arg1, SCM args); +extern SCM scm_apply_2 (SCM proc, SCM arg1, SCM arg2, SCM args); +extern SCM scm_apply_3 (SCM proc, SCM arg1, SCM arg2, SCM arg3, SCM args); extern SCM scm_nconc2last (SCM lst); extern SCM scm_apply (SCM proc, SCM arg1, SCM args); extern SCM scm_dapply (SCM proc, SCM arg1, SCM args); |