From 55ca6248ffff6d9e1669fc49fe9de8489adeb7f9 Mon Sep 17 00:00:00 2001 From: Peter Mikkelsen Date: Wed, 12 Jan 2022 20:09:05 +0000 Subject: =?UTF-8?q?Add=20dfn=20evaluation,=20and=20localized=20=E2=8E=95IO?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apl9.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'apl9.h') 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); -- cgit v1.2.3