summaryrefslogtreecommitdiff
path: root/lisp.h
diff options
context:
space:
mode:
authorFelix Perktold <Felix.Perktold@student.uibk.ac.at>2026-01-18 17:44:10 +0100
committerFelix Perktold <Felix.Perktold@student.uibk.ac.at>2026-01-18 17:44:10 +0100
commit07cd615c7e1cafccd6d46b3eb68d413f2a2dd9a5 (patch)
tree540292fc4029265628ea7e4d2d750c21c267a85b /lisp.h
parenta2ab90cfb9e364a3de7157b2ea2905e4c944583d (diff)
start writing psql module, start writing exercise 1 with that module, small header file changes as needed for module programming
Diffstat (limited to 'lisp.h')
-rw-r--r--lisp.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/lisp.h b/lisp.h
index 7d435ff..ef4505a 100644
--- a/lisp.h
+++ b/lisp.h
@@ -4,8 +4,6 @@
typedef struct value value;
typedef struct env env;
-void print_value(value *val);
-void println_value(value *val);
// environments, TODO: make this use hashtable
// symbol->val
typedef struct env {
@@ -21,7 +19,6 @@ value *env_lookup(env *e, const char *sym);
extern env *global_env;
-value *eval(env *e, value *val);
value *eval_pair(env *e, value *val);
value *apply(value *lambda, value *args);