diff options
| author | Felix Perktold <Felix.Perktold@student.uibk.ac.at> | 2026-01-18 17:44:10 +0100 |
|---|---|---|
| committer | Felix Perktold <Felix.Perktold@student.uibk.ac.at> | 2026-01-18 17:44:10 +0100 |
| commit | 07cd615c7e1cafccd6d46b3eb68d413f2a2dd9a5 (patch) | |
| tree | 540292fc4029265628ea7e4d2d750c21c267a85b /lisp_api.h | |
| parent | a2ab90cfb9e364a3de7157b2ea2905e4c944583d (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_api.h')
| -rw-r--r-- | lisp_api.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -4,6 +4,11 @@ typedef struct value value; typedef struct env env; +value *eval(env *e, value *val); + +void print_value(value *val); +void println_value(value *val); + typedef enum { VT_INT, VT_DOUBLE, |
