summaryrefslogtreecommitdiff
path: root/apl9.h
diff options
context:
space:
mode:
authorPeter Mikkelsen <petermikkelsen10@gmail.com>2022-01-12 20:09:05 +0000
committerPeter Mikkelsen <petermikkelsen10@gmail.com>2022-01-12 20:09:05 +0000
commit55ca6248ffff6d9e1669fc49fe9de8489adeb7f9 (patch)
tree1bd23b6c91cb0c792ac1072cfe005cf2f5581551 /apl9.h
parentd152639e4495089cabbbf7a16e5bc5129af78bfa (diff)
Add dfn evaluation, and localized ⎕IO
Diffstat (limited to 'apl9.h')
-rw-r--r--apl9.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/apl9.h b/apl9.h
index f30c6e8..64f7eba 100644
--- a/apl9.h
+++ b/apl9.h
@@ -99,13 +99,16 @@ typedef Array* (*fnmonad)(Array*);
typedef Array* (*fndyad)(Array*, Array*);
/* Function prototypes for the different source files */
+/* main.c */
+Datum *evalline(Rune *);
+
/* print.c */
Rune *ppdatum(Datum);
Rune *ppdatums(Datum *, int);
Rune *pparray(Array *);
/* lexer.c */
-Statement *lexline(Rune *, Symtab *);
+Statement *lexline(Rune *);
/* array.c */
Array *mkarray(int, int, int);