From 26ddbd7146f65a2cf100713f422a9ab5b1890620 Mon Sep 17 00:00:00 2001 From: Charles Date: Sun, 14 Jun 2020 10:36:53 +0200 Subject: Changing ast related struct and fixing functions accordingly --- include/parse.h | 48 ------------------------------------------------ 1 file changed, 48 deletions(-) delete mode 100644 include/parse.h (limited to 'include/parse.h') diff --git a/include/parse.h b/include/parse.h deleted file mode 100644 index 6cb50b8..0000000 --- a/include/parse.h +++ /dev/null @@ -1,48 +0,0 @@ -/* ************************************************************************** */ -/* */ -/* ::: :::::::: */ -/* parse.h :+: :+: :+: */ -/* +:+ +:+ +:+ */ -/* By: cacharle +#+ +:+ +#+ */ -/* +#+#+#+#+#+ +#+ */ -/* Created: 2020/02/28 09:00:00 by cacharle #+# #+# */ -/* Updated: 2020/06/13 11:59:47 by charles ### ########.fr */ -/* */ -/* ************************************************************************** */ - -#ifndef PARSE_H -# define PARSE_H - -# include "minishell.h" -# include "ast.h" - -/* -** \file parse.h -** \brief Input parsing and AST manipulation -** -** Context free grammar: -** ``` -** redir_in ::= '<' -** redir_out ::= '>' -** redir_append ::= '>>' -** string ::= '\'' .+ '\'' | '"' .+ '"' | [^ ]+ -** sep ::= '&&' | '||' | '|' | ';' -** expr ::= | | | -** cmd ::= + -** line ::= | -** ``` -*/ - -/* -** lexer.c -*/ - -// char **lexer(char *input); - -/* -** parse.c -*/ - -t_ast *parse(t_ftlst *lst); - -#endif -- cgit