diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2018-03-07 15:25:07 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2018-03-07 15:25:07 -0500 |
commit | 952cb2d6dbd1b4cd76bb7c5dd46c1053631476a3 (patch) | |
tree | c1c1c89355d242489b551bd4390bdd2a68682926 /parser.h | |
parent | 0fb67b8d66ffd47ede0a0a5d09380943722414e9 (diff) |
big changes; no ints; things work better
Diffstat (limited to 'parser.h')
-rw-r--r-- | parser.h | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -26,10 +26,9 @@ void iend(interpreter *it); void iskip(interpreter *it); -variable *inew_string(interpreter *, const char *, char *); -variable *inew_integer(interpreter *, const char *, int32_t); -variable *inew_float(interpreter *, const char *, float); -void inew_cfunc(interpreter *, const char *, func_t); +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); |