diff options
author | Kevin Ryde <user42@zip.com.au> | 2005-05-03 23:03:27 +0000 |
---|---|---|
committer | Kevin Ryde <user42@zip.com.au> | 2005-05-03 23:03:27 +0000 |
commit | 6e9f3c2676c0101590d4229653e9c628cb293064 (patch) | |
tree | 9dc512c34a4dfb9143bd7729d2c509922b977519 /srfi/srfi-1.h | |
parent | e9508fbb7df0b1ead007637f16d80cf831776307 (diff) | |
download | guile-6e9f3c2676c0101590d4229653e9c628cb293064.tar.gz |
(break, break!): Rewrite in C.
Diffstat (limited to 'srfi/srfi-1.h')
-rw-r--r-- | srfi/srfi-1.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/srfi/srfi-1.h b/srfi/srfi-1.h index 63896ed47..83f3da65f 100644 --- a/srfi/srfi-1.h +++ b/srfi/srfi-1.h @@ -33,6 +33,8 @@ #endif SCM_SRFI1_API SCM scm_srfi1_alist_copy (SCM alist); +SCM_SRFI1_API SCM scm_srfi1_break (SCM pred, SCM lst); +SCM_SRFI1_API SCM scm_srfi1_break_x (SCM pred, SCM lst); SCM_SRFI1_API SCM scm_srfi1_concatenate (SCM lstlst); SCM_SRFI1_API SCM scm_srfi1_concatenate_x (SCM lstlst); SCM_SRFI1_API SCM scm_srfi1_count (SCM pred, SCM list1, SCM rest); |