From 98990d5195e93154abbfd16eaa9d1fcc3572bc5c Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Thu, 10 Sep 2020 19:46:07 +0200 Subject: Added errorf_ret helper, Removing error to status (just status code and fatal error) --- src/parser/parsed.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/parser/parsed.c') diff --git a/src/parser/parsed.c b/src/parser/parsed.c index 4e6d6f2..c577b32 100644 --- a/src/parser/parsed.c +++ b/src/parser/parsed.c @@ -6,13 +6,13 @@ /* By: charles +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/08/27 20:27:42 by charles #+# #+# */ -/* Updated: 2020/08/28 10:44:39 by charles ### ########.fr */ +/* Updated: 2020/09/10 19:31:46 by charles ### ########.fr */ /* */ /* ************************************************************************** */ #include "parser.h" -t_parsed *parsed_new(t_ast *ast, t_tok_lst *rest) +t_parsed *parsed_new(t_ast *ast, t_tok_lst *rest) { t_parsed *ret; @@ -24,7 +24,7 @@ t_parsed *parsed_new(t_ast *ast, t_tok_lst *rest) return ret; } -t_parsed *parsed_error(const char *format, ...) +t_parsed *parsed_error(const char *format, ...) { t_parsed *err; va_list ap; -- cgit