diff options
author | Kevin Ryde <user42@zip.com.au> | 2005-03-13 22:49:28 +0000 |
---|---|---|
committer | Kevin Ryde <user42@zip.com.au> | 2005-03-13 22:49:28 +0000 |
commit | 5df2ac97e96d1ab8422d39034f8076a3e8741a3a (patch) | |
tree | c23becdfc338f27de15fef25aeaa3ac4a1efe6b7 /srfi/srfi-1.h | |
parent | 68513144456f575409acb9c640347f7c954d6579 (diff) | |
download | guile-5df2ac97e96d1ab8422d39034f8076a3e8741a3a.tar.gz |
(find, find-tail): 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 bf14f2db3..636345d0a 100644 --- a/srfi/srfi-1.h +++ b/srfi/srfi-1.h @@ -37,6 +37,8 @@ SCM_SRFI1_API SCM scm_srfi1_delete (SCM x, SCM lst, SCM pred); SCM_SRFI1_API SCM scm_srfi1_delete_x (SCM x, SCM lst, SCM pred); SCM_SRFI1_API SCM scm_srfi1_delete_duplicates (SCM lst, SCM pred); SCM_SRFI1_API SCM scm_srfi1_delete_duplicates_x (SCM lst, SCM pred); +SCM_SRFI1_API SCM scm_srfi1_find (SCM pred, SCM lst); +SCM_SRFI1_API SCM scm_srfi1_find_tail (SCM pred, SCM lst); SCM_SRFI1_API SCM scm_srfi1_length_plus (SCM lst); SCM_SRFI1_API SCM scm_srfi1_list_copy (SCM lst); SCM_SRFI1_API SCM scm_srfi1_map (SCM proc, SCM arg1, SCM args); |