summaryrefslogtreecommitdiffstats
path: root/eval.h
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2014-02-11 00:01:05 -0800
committerKaz Kylheku <kaz@kylheku.com>2014-02-11 00:01:05 -0800
commitef9d1a2ddb3cd1b237b82c7dda092527a2e7bb00 (patch)
tree9d86a1d612f34001934c116ad9c4b3132b482c45 /eval.h
parent656a6d4b2efc283b31d540abf87408a67287bbdb (diff)
downloadtxr-ef9d1a2ddb3cd1b237b82c7dda092527a2e7bb00.tar.gz
txr-ef9d1a2ddb3cd1b237b82c7dda092527a2e7bb00.tar.bz2
txr-ef9d1a2ddb3cd1b237b82c7dda092527a2e7bb00.zip
* Makefile (OBJS): New object file, combi.o.
* dep.mk: Updated. * eval.c: Removed combination and permutation functions; they now reside in combi.c. (generate): Changed from static to external linkage. * eval.h (generate): Declared. * combi.c: New file. * combi.h: New file. * txr.vim: Regenerated.
Diffstat (limited to 'eval.h')
-rw-r--r--eval.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/eval.h b/eval.h
index 5389320d..03bfea23 100644
--- a/eval.h
+++ b/eval.h
@@ -42,5 +42,6 @@ val expand(val form);
val expand_forms(val forms);
val bindable(val obj);
val mapcarv(val fun, val list_of_lists);
+val generate(val while_pred, val gen_fun);
void eval_init(void);