From 487a66394061f2d14a2fa421302966b5442d643f Mon Sep 17 00:00:00 2001 From: JozanLeClerc Date: Mon, 27 Jul 2020 18:55:07 +0200 Subject: I couldn't see shit --- src/p_lcom_next.h | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 src/p_lcom_next.h (limited to 'src/p_lcom_next.h') diff --git a/src/p_lcom_next.h b/src/p_lcom_next.h new file mode 100644 index 0000000..3113b6b --- /dev/null +++ b/src/p_lcom_next.h @@ -0,0 +1,25 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* p_lcom_next.h :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: rbousset +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2020/02/14 17:19:27 by rbousset #+# #+# */ +/* Updated: 2020/02/14 17:19:29 by rbousset ### ########lyon.fr */ +/* */ +/* ************************************************************************** */ + +#ifndef P_LCOM_NEXT_H +#define P_LCOM_NEXT_H + +#include + +#include "s_struct.h" + +char **subst_vars(char *words[], + t_msh *msh); +char **subst_args(const char word[], + int8_t redir); + +#endif -- cgit v1.2.3 From db381c5a5d8755937663a5ea61e655186f7606e7 Mon Sep 17 00:00:00 2001 From: JozanLeClerc Date: Thu, 30 Jul 2020 22:14:06 +0200 Subject: Not too bad --- src/p_lcom_next.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/p_lcom_next.h') diff --git a/src/p_lcom_next.h b/src/p_lcom_next.h index 3113b6b..ad5c5c5 100644 --- a/src/p_lcom_next.h +++ b/src/p_lcom_next.h @@ -21,5 +21,6 @@ char **subst_vars(char *words[], t_msh *msh); char **subst_args(const char word[], int8_t redir); +char **p_check_first_arg_equals(char *words[]); #endif -- cgit v1.2.3 From caa35c6770ea21112ccf38d8637d15f2bc717ea6 Mon Sep 17 00:00:00 2001 From: JozanLeClerc Date: Fri, 31 Jul 2020 19:25:39 +0200 Subject: Stuff to fix --- src/p_lcom_next.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/p_lcom_next.h') diff --git a/src/p_lcom_next.h b/src/p_lcom_next.h index ad5c5c5..cd1ef0d 100644 --- a/src/p_lcom_next.h +++ b/src/p_lcom_next.h @@ -17,10 +17,11 @@ #include "s_struct.h" -char **subst_vars(char *words[], +char **p_subst_vars(char *words[], t_msh *msh); -char **subst_args(const char word[], +char **p_subst_args(const char word[], int8_t redir); -char **p_check_first_arg_equals(char *words[]); +char **p_check_args_equals(char *words[], + t_msh *msh); #endif -- cgit v1.2.3 From 2ed2a9d739b6dd3be489792ef510b1f2085ab4ce Mon Sep 17 00:00:00 2001 From: JozanLeClerc Date: Mon, 3 Aug 2020 16:56:17 +0200 Subject: Cleaner headers --- src/p_lcom_next.h | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'src/p_lcom_next.h') diff --git a/src/p_lcom_next.h b/src/p_lcom_next.h index cd1ef0d..2d0ae98 100644 --- a/src/p_lcom_next.h +++ b/src/p_lcom_next.h @@ -17,11 +17,8 @@ #include "s_struct.h" -char **p_subst_vars(char *words[], - t_msh *msh); -char **p_subst_args(const char word[], - int8_t redir); -char **p_check_args_equals(char *words[], - t_msh *msh); +char **p_subst_vars(char *words[], t_msh *msh); +char **p_subst_args(const char word[], int8_t redir); +char **p_check_args_equals(char *words[], t_msh *msh); #endif -- cgit v1.2.3