diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-10-03 15:26:37 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-10-03 15:26:37 +0200 |
commit | 349b804df98128d96ea340ed080c42618fff588c (patch) | |
tree | ec05935319b7ca9396f707afbc3722f397e4f83a | |
parent | Renormed p_line (diff) | |
download | 42-minishell-349b804df98128d96ea340ed080c42618fff588c.tar.gz 42-minishell-349b804df98128d96ea340ed080c42618fff588c.tar.bz2 42-minishell-349b804df98128d96ea340ed080c42618fff588c.tar.xz 42-minishell-349b804df98128d96ea340ed080c42618fff588c.tar.zst 42-minishell-349b804df98128d96ea340ed080c42618fff588c.zip |
Normed p_redirs
-rw-r--r-- | src/p_redirs.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/p_redirs.h b/src/p_redirs.h index db75cfb..6c06024 100644 --- a/src/p_redirs.h +++ b/src/p_redirs.h @@ -10,18 +10,19 @@ /* */ /* ************************************************************************** */ -#ifndef P_REDIRS_H -#define P_REDIRS_H +#ifndef FT_P_REDIRS_H +# define FT_P_REDIRS_H -#include <stdint.h> +# include <stdint.h> -#include "s_struct.h" +# include "s_struct.h" enum e_fd_rdr_id { FD, RDR }; + struct s_rdr_tmp { const char *word; |