From 5b681182824ae45b5a27d1503de32fa2760c5800 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Sat, 10 Oct 2020 10:34:20 +0200 Subject: Norming interpolation --- src/parser/parsed_error.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/parser/parsed_error.c') diff --git a/src/parser/parsed_error.c b/src/parser/parsed_error.c index a38a85c..3486235 100644 --- a/src/parser/parsed_error.c +++ b/src/parser/parsed_error.c @@ -6,7 +6,7 @@ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/10/10 09:20:17 by cacharle #+# #+# */ -/* Updated: 2020/10/10 09:20:30 by cacharle ### ########.fr */ +/* Updated: 2020/10/10 09:24:59 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ @@ -37,7 +37,7 @@ t_parsed *parsed_unexpected(char *content) return (parsed_error("syntax error near unexpected token `%s'", content)); } -bool parsed_err(t_parsed *parsed) +bool parsed_check(t_parsed *parsed) { return (parsed == NULL || parsed->syntax_error); } -- cgit