From 28447df15ac80d7dad1f4889d3d61fe7bfe42a12 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Thu, 8 Mar 2018 12:17:12 -0500 Subject: implicit multiply, negatives, solve --- parser.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'parser.h') diff --git a/parser.h b/parser.h index 1b821cd..1b0fdd6 100644 --- a/parser.h +++ b/parser.h @@ -22,15 +22,15 @@ typedef struct { typedef int (*func_t)(interpreter *); void iinit(interpreter *); -void iend(interpreter *it); +void iend(interpreter *); -void iskip(interpreter *it); +void iskip(interpreter *); variable *inew_string(interpreter *, const char *, const char *); variable *inew_number(interpreter *, const char *, float); variable *inew_cfunc(interpreter *, const char *, func_t); int idoline(interpreter *, const char *); -variable *idoexpr(interpreter *interp, const char *line); +variable *idoexpr(interpreter *, const char *); #endif // PARSER_H_ -- cgit v1.2.3