From 74787eefa2ac85d85b484d0ca5dffc6a2a13331d Mon Sep 17 00:00:00 2001 From: Charles Date: Mon, 30 Mar 2020 16:41:54 +0200 Subject: Added Doxyfile --- include/ms_parse.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'include/ms_parse.h') diff --git a/include/ms_parse.h b/include/ms_parse.h index 9e28ed6..74604e5 100644 --- a/include/ms_parse.h +++ b/include/ms_parse.h @@ -15,6 +15,19 @@ # include "minishell.h" +/* +** Context free grammar: +** +** redir_in ::= '<' +** redir_out ::= '>' +** redir_append ::= '>>' +** string ::= '\'' .+ '\'' | '"' .+ '"' | [^ ]+ +** sep ::= '&&' | '||' | '|' | ';' +** expr ::= | | | +** sexpr ::= + +** line ::= | +*/ + /* ** TAG_CMD: command name ** TAG_ARG: command argument -- cgit