diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2018-03-08 12:17:12 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2018-03-08 12:17:12 -0500 |
commit | 28447df15ac80d7dad1f4889d3d61fe7bfe42a12 (patch) | |
tree | dcc38b9a21e9771af0ce3d243660a59bd4992c52 /parser.h | |
parent | 40e157ffa2ae741088d2fbea22c9042b85daf108 (diff) |
implicit multiply, negatives, solve
Diffstat (limited to 'parser.h')
-rw-r--r-- | parser.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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_ |