summaryrefslogtreecommitdiffstats
path: root/lib.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib.c')
-rw-r--r--lib.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib.c b/lib.c
index 3dce3750..acf66f36 100644
--- a/lib.c
+++ b/lib.c
@@ -10786,6 +10786,11 @@ val search(val seq, val key, val testfun, val keyfun)
}
}
+val contains(val key, val seq, val testfun, val keyfun)
+{
+ return search(seq, key, testfun, keyfun);
+}
+
static val rsearch_list(val seq, val key, val testfun, val keyfun)
{
val siter, kiter;