diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-09-20 15:24:18 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-09-20 15:24:18 +0200 |
commit | 00f646697e6d30d047e0b1e09ae0e55d216ce730 (patch) | |
tree | eb9a7a0734ba0caf46debb0fe7a30442f84af743 /src/s_lredir.h | |
parent | Redirs rework in progress (diff) | |
download | 42-minishell-00f646697e6d30d047e0b1e09ae0e55d216ce730.tar.gz 42-minishell-00f646697e6d30d047e0b1e09ae0e55d216ce730.tar.bz2 42-minishell-00f646697e6d30d047e0b1e09ae0e55d216ce730.tar.xz 42-minishell-00f646697e6d30d047e0b1e09ae0e55d216ce730.tar.zst 42-minishell-00f646697e6d30d047e0b1e09ae0e55d216ce730.zip |
In progress
Diffstat (limited to 'src/s_lredir.h')
-rw-r--r-- | src/s_lredir.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/s_lredir.h b/src/s_lredir.h index 3349329..4b82511 100644 --- a/src/s_lredir.h +++ b/src/s_lredir.h @@ -13,10 +13,12 @@ #ifndef S_LREDIR_H #define S_LREDIR_H +#include <stdint.h> + #include "s_struct.h" -void s_lredir_add_back(t_lredir **lredir, t_lredir *new) -void s_lredir_clear(struct s_lredir **lredir) -struct s_lredir *s_lredir_new(const char path[], int32_t fd, int8_t redir) +void s_lredir_add_back(t_lredir **lredir, t_lredir *new); +void s_lredir_clear(struct s_lredir **lredir); +struct s_lredir *s_lredir_new(const char path[], int32_t fd, int8_t redir); #endif |