aboutsummaryrefslogtreecommitdiff
path: root/src/primitives.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/primitives.h')
-rw-r--r--src/primitives.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/primitives.h b/src/primitives.h
new file mode 100644
index 0000000..1bfe710
--- /dev/null
+++ b/src/primitives.h
@@ -0,0 +1,13 @@
+#ifndef BAMBOO_LISP_PRIMITIVIE_H_
+#define BAMBOO_LISP_PRIMITIVIE_H_
+
+#include "interp.h"
+
+SExpRef primitive_if(Interp *interp, SExpRef sexp);
+SExpRef primitive_cond(Interp *interp, SExpRef sexp);
+SExpRef primitive_progn(Interp *interp, SExpRef sexp);
+SExpRef primitive_setq(Interp *interp, SExpRef sexp);
+SExpRef primitive_let(Interp *interp, SExpRef sexp);
+SExpRef primitive_while(Interp *interp, SExpRef sexp);
+
+#endif