From 941099778b59da6b904c284e8a82affe4766124b Mon Sep 17 00:00:00 2001 From: Charles Date: Mon, 30 Mar 2020 22:27:16 +0200 Subject: Added doc --- include/minishell.h | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) (limited to 'include/minishell.h') diff --git a/include/minishell.h b/include/minishell.h index 04ab243..9931b15 100644 --- a/include/minishell.h +++ b/include/minishell.h @@ -14,6 +14,11 @@ #ifndef MINISHELL_H # define MINISHELL_H +/** +** \file minishell.h +** \brief Common header +*/ + # include # include # include @@ -31,8 +36,16 @@ # include "ms_parse.h" -# define MS_PATH_KEY "PATH" +/** +** \brief Pipe write index +*/ + # define MS_PIPE_WRITE 1 + +/** +** \brief Pipe read index +*/ + # define MS_PIPE_READ 0 typedef t_ftht* t_path; -- cgit