aboutsummaryrefslogtreecommitdiffstats
path: root/parser.h
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2018-02-05 11:28:24 -0500
committerClyne Sullivan <tullivan99@gmail.com>2018-02-05 11:28:24 -0500
commite67715637ac92cabf253c5405fb1cfd23342fa24 (patch)
tree0037a08ef77716744f672b2e3e51c8923ebd5f27 /parser.h
parent0c3901b3a87c4c37fdd61d115d87ee6c753b4576 (diff)
nested expressions, svalue
Diffstat (limited to 'parser.h')
-rw-r--r--parser.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/parser.h b/parser.h
index 822adf0..83a81e1 100644
--- a/parser.h
+++ b/parser.h
@@ -15,7 +15,7 @@ typedef struct {
uint8_t indent;
} interpreter;
-typedef void (*func_t)(interpreter *);
+typedef int (*func_t)(interpreter *);
void iinit(interpreter *);
@@ -31,8 +31,4 @@ char *igetarg_string(interpreter *, uint32_t);
int igetarg_integer(interpreter *, uint32_t);
float igetarg_float(interpreter *, uint32_t);
-char *iget_string(interpreter *, const char *);
-int iget_integer(interpreter *, const char *);
-float iget_float(interpreter *, const char *);
-
#endif // PARSER_H_