diff options
author | Kevin Ryde <user42@zip.com.au> | 2003-07-13 23:05:31 +0000 |
---|---|---|
committer | Kevin Ryde <user42@zip.com.au> | 2003-07-13 23:05:31 +0000 |
commit | 65978fb2bdb199551ce5d693b8a78b42869ab39d (patch) | |
tree | 1ccd47059b170efe8b49e19b48ea9d3ee5608799 /srfi/srfi-1.h | |
parent | 0aacf84ee6095d1dc5491ae7eb83feeae44cef4c (diff) | |
download | guile-65978fb2bdb199551ce5d693b8a78b42869ab39d.tar.gz |
2003-07-14 Matthias Koeppe <mkoeppe@mail.math.uni-magdeburg.de>
* srfi-1.c, srfi-1.h (scm_srfi1_partition), srfi-1.scm (partition):
Re-implement in C to avoid stack overflows for long input lists.
Diffstat (limited to 'srfi/srfi-1.h')
-rw-r--r-- | srfi/srfi-1.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/srfi/srfi-1.h b/srfi/srfi-1.h index 79b336961..e082ba4aa 100644 --- a/srfi/srfi-1.h +++ b/srfi/srfi-1.h @@ -40,6 +40,7 @@ SCM_SRFI1_API SCM scm_srfi1_map (SCM proc, SCM arg1, SCM args); SCM_SRFI1_API SCM scm_srfi1_for_each (SCM proc, SCM arg1, SCM args); SCM_SRFI1_API SCM scm_srfi1_member (SCM obj, SCM ls, SCM pred); SCM_SRFI1_API SCM scm_srfi1_assoc (SCM key, SCM alist, SCM pred); +SCM_SRFI1_API SCM scm_srfi1_partition (SCM pred, SCM list); SCM_SRFI1_API void scm_init_srfi_1 (void); |