]> git.lizzy.rs Git - nothing.git/blobdiff - src/ebisp/parser.h
(#603) Fix bad GC memory reallocation
[nothing.git] / src / ebisp / parser.h
index 9f72a2bbd21cf80faf416d471302042e3864179d..0dcad5116cb3be7e07c9e07a4a79cbe2ec845eeb 100644 (file)
@@ -21,11 +21,12 @@ struct ParseResult parse_success(struct Expr expr,
 struct ParseResult parse_failure(const char *error,
                                  const char *end);
 
-// TODO: parse does not support quasiquote syntax
 
 struct ParseResult read_expr_from_string(Gc *gc, const char *str);
 struct ParseResult read_all_exprs_from_string(Gc *gc, const char *str);
+
 struct ParseResult read_expr_from_file(Gc *gc, const char *filename);
+struct ParseResult read_all_exprs_from_file(Gc *gc, const char *filename);
 
 void print_parse_error(FILE *stream,
                        const char *str,