diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-10-03 16:49:28 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-10-03 16:49:28 +0200 |
commit | 87552d801502e6dbb702147effac735cfab30faf (patch) | |
tree | 819cd7c68caa03e7093832641d4d16bf6335bbaf /src | |
parent | Normed s_lpipes (diff) | |
download | 42-minishell-87552d801502e6dbb702147effac735cfab30faf.tar.gz 42-minishell-87552d801502e6dbb702147effac735cfab30faf.tar.bz2 42-minishell-87552d801502e6dbb702147effac735cfab30faf.tar.xz 42-minishell-87552d801502e6dbb702147effac735cfab30faf.tar.zst 42-minishell-87552d801502e6dbb702147effac735cfab30faf.zip |
New TODO entry, normed s_redir
Diffstat (limited to 'src')
-rw-r--r-- | src/s_lredir.c | 2 | ||||
-rw-r--r-- | src/s_lredir.h | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/s_lredir.c b/src/s_lredir.c index 84e857c..cee0691 100644 --- a/src/s_lredir.c +++ b/src/s_lredir.c @@ -43,8 +43,8 @@ void s_lredir_add_back(t_lredir **lredir, t_lredir *new) void s_lredir_clear(struct s_lredir **lredir) { - struct s_lredir *tmp; struct s_lredir *renext; + struct s_lredir *tmp; if (lredir == NULL) return ; diff --git a/src/s_lredir.h b/src/s_lredir.h index 4b82511..cf9bc6c 100644 --- a/src/s_lredir.h +++ b/src/s_lredir.h @@ -10,12 +10,12 @@ /* */ /* ************************************************************************** */ -#ifndef S_LREDIR_H -#define S_LREDIR_H +#ifndef FT_S_LREDIR_H +# define FT_S_LREDIR_H -#include <stdint.h> +# include <stdint.h> -#include "s_struct.h" +# include "s_struct.h" void s_lredir_add_back(t_lredir **lredir, t_lredir *new); void s_lredir_clear(struct s_lredir **lredir); |