1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

(scm_make_list): New code, moving make-list from boot-9.scm.

This commit is contained in:
Kevin Ryde 2005-04-23 00:15:16 +00:00
parent 7cfb4dd2e8
commit 15f7341ed4

View file

@ -35,6 +35,7 @@ SCM_API SCM scm_list_5 (SCM e1, SCM e2, SCM e3, SCM e4, SCM e5);
SCM_API SCM scm_list_n (SCM elt, ...);
SCM_API SCM scm_list_head (SCM lst, SCM k);
SCM_API SCM scm_list (SCM objs);
SCM_API SCM scm_make_list (SCM n, SCM init);
SCM_API SCM scm_cons_star (SCM arg, SCM objs);
SCM_API SCM scm_null_p (SCM x);
SCM_API SCM scm_list_p (SCM x);