summaryrefslogtreecommitdiff
path: root/src/parser.h
diff options
context:
space:
mode:
authorLLLL Colonq <llll@colonq>2025-09-25 20:05:19 -0400
committerLLLL Colonq <llll@colonq>2025-09-25 20:05:19 -0400
commit811f11463851a0f35835ac72ef09b65b1072de20 (patch)
tree225cee11b86af7662e6319c9864788b92be3dfb1 /src/parser.h
parent8e79c8ac42d3fa248174120266ae0988361df212 (diff)
Add runtime freezing, add defun and defmacro
Diffstat (limited to 'src/parser.h')
-rw-r--r--src/parser.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser.h b/src/parser.h
index 73c489a..f99a891 100644
--- a/src/parser.h
+++ b/src/parser.h
@@ -15,6 +15,6 @@ typedef struct {
} pit_parser;
pit_parser *pit_parser_from_lexer(pit_lexer *lex);
-pit_value pit_parse(pit_runtime *rt, pit_parser *st);
+pit_value pit_parse(pit_runtime *rt, pit_parser *st, bool *eof);
#endif