aboutsummaryrefslogtreecommitdiff
path: root/include/parser.h
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2020-10-09 14:01:03 +0200
committerCharles Cabergs <me@cacharle.xyz>2020-10-09 14:01:03 +0200
commit2a8056e885151fa155bf82a3d8cc97b0905ea577 (patch)
treecde4444d26f1a3f27a56cad029e923a35accdc2a /include/parser.h
parent70c76a4e6d73551a1a78ed61e7cd8f7287137a99 (diff)
downloadminishell-2a8056e885151fa155bf82a3d8cc97b0905ea577.tar.gz
minishell-2a8056e885151fa155bf82a3d8cc97b0905ea577.tar.bz2
minishell-2a8056e885151fa155bf82a3d8cc97b0905ea577.zip
Norming header, Fixing mistakes detected by static analyser
Diffstat (limited to 'include/parser.h')
-rw-r--r--include/parser.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/include/parser.h b/include/parser.h
index b00407c..126ef8d 100644
--- a/include/parser.h
+++ b/include/parser.h
@@ -6,7 +6,7 @@
/* By: cacharle <cacharle@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/28 09:00:00 by cacharle #+# #+# */
-/* Updated: 2020/10/07 16:33:16 by cacharle ### ########.fr */
+/* Updated: 2020/10/09 13:45:41 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
@@ -36,7 +36,7 @@
# include "lexer.h"
# include "error.h"
-struct s_ast;
+struct s_ast;
/*
** \brief Operation struct
@@ -122,5 +122,4 @@ t_parsed *parse_op(t_tok_lst *input);
t_parsed *parse_expr(t_tok_lst *input);
t_parsed *parse_cmd(t_tok_lst *input);
-
#endif