aboutsummaryrefslogtreecommitdiff
path: root/src/bamboo.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/bamboo.c')
-rw-r--r--src/bamboo.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/bamboo.c b/src/bamboo.c
deleted file mode 100644
index 70a84f5..0000000
--- a/src/bamboo.c
+++ /dev/null
@@ -1,22 +0,0 @@
-#include "bamboo.h"
-
-SExpRef new_list1(Bamboo *ctx, SExpRef e1) {
- return cons(ctx, e1, nil(ctx));
-}
-
-SExpRef new_list2(Bamboo *ctx, SExpRef e1, SExpRef e2) {
- return cons(ctx, e1, new_list1(ctx, e2));
-}
-
-SExpRef new_list3(Bamboo *ctx, SExpRef e1, SExpRef e2, SExpRef e3) {
- return cons(ctx, e1, new_list2(ctx, e2, e3));
-}
-
-SExpRef new_list4(Bamboo *ctx, SExpRef e1, SExpRef e2, SExpRef e3, SExpRef e4) {
- return cons(ctx, e1, new_list3(ctx, e2, e3, e4));
-}
-
-SExpRef new_list5(Bamboo *ctx, SExpRef e1, SExpRef e2, SExpRef e3, SExpRef e4, SExpRef e5) {
- return cons(ctx, e1, new_list4(ctx, e2, e3, e4, e5));
-}
-