aboutsummaryrefslogtreecommitdiff
path: root/include/minishell.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/minishell.h')
-rw-r--r--include/minishell.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/minishell.h b/include/minishell.h
index ccb5068..97b12e4 100644
--- a/include/minishell.h
+++ b/include/minishell.h
@@ -6,7 +6,7 @@
/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/26 15:33:51 by cacharle #+# #+# */
-/* Updated: 2020/06/14 16:22:08 by charles ### ########.fr */
+/* Updated: 2020/06/15 09:47:20 by charles ### ########.fr */
/* */
/* ************************************************************************** */
@@ -109,7 +109,7 @@ int builtin_exit(char **argv, t_env env);
** preprocess.c
*/
-char **preprocess(t_ftlst *tokens, t_env env);
-char *preprocess_filename(t_ftlst *tokens, t_env env);
+char **preprocess(t_ftlst **tokens, t_env env);
+char *preprocess_filename(t_ftlst **tokens, t_env env);
#endif