summaryrefslogtreecommitdiff
path: root/libguile/list.h
diff options
context:
space:
mode:
authorDirk Herrmann <dirk@dirk-herrmanns-seiten.de>2000-12-01 17:57:42 +0000
committerDirk Herrmann <dirk@dirk-herrmanns-seiten.de>2000-12-01 17:57:42 +0000
commit79a3dafe673529ac2ad909259dc6752226c5a484 (patch)
tree1042f7f4cfef9a4d55ced69ca4cab88efdce7df6 /libguile/list.h
parent23437298cc331ea70e7a85ecd33d6ff457383fb2 (diff)
downloadguile-79a3dafe673529ac2ad909259dc6752226c5a484.tar.gz
* Added scm_c_memq as a fast C level alternative for scm_memq.
Diffstat (limited to 'libguile/list.h')
-rw-r--r--libguile/list.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libguile/list.h b/libguile/list.h
index f24d54331..96163ec87 100644
--- a/libguile/list.h
+++ b/libguile/list.h
@@ -83,6 +83,7 @@ extern SCM scm_list_set_x (SCM lst, SCM k, SCM val);
extern SCM scm_list_cdr_set_x (SCM lst, SCM k, SCM val);
extern SCM scm_last_pair (SCM sx);
extern SCM scm_list_tail (SCM lst, SCM k);
+extern SCM scm_c_memq (SCM x, SCM lst);
extern SCM scm_memq (SCM x, SCM lst);
extern SCM scm_memv (SCM x, SCM lst);
extern SCM scm_member (SCM x, SCM lst);