aboutsummaryrefslogtreecommitdiffstats
path: root/parser.h
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2018-03-08 12:17:12 -0500
committerClyne Sullivan <tullivan99@gmail.com>2018-03-08 12:17:12 -0500
commit28447df15ac80d7dad1f4889d3d61fe7bfe42a12 (patch)
treedcc38b9a21e9771af0ce3d243660a59bd4992c52 /parser.h
parent40e157ffa2ae741088d2fbea22c9042b85daf108 (diff)
implicit multiply, negatives, solve
Diffstat (limited to 'parser.h')
-rw-r--r--parser.h6
1 files changed, 3 insertions, 3 deletions
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_