aboutsummaryrefslogtreecommitdiffstats
path: root/parser.h
diff options
context:
space:
mode:
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_