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