diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-06-14 21:26:36 +0200 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-06-14 21:26:36 +0200 |
| commit | 91d91b0f54ec9795beaf673f20ff87b894a558c4 (patch) | |
| tree | bc6e084703bd677fcf4ca3ee82898688fc3e2ee7 /include/minishell.h | |
| parent | 47fff4418d3a83ae214429f395232c3536ff03c4 (diff) | |
| download | minishell-91d91b0f54ec9795beaf673f20ff87b894a558c4.tar.gz minishell-91d91b0f54ec9795beaf673f20ff87b894a558c4.tar.bz2 minishell-91d91b0f54ec9795beaf673f20ff87b894a558c4.zip | |
WIP: Added eval cmd with redirection and builtins
Diffstat (limited to 'include/minishell.h')
| -rw-r--r-- | include/minishell.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/minishell.h b/include/minishell.h index 07c2fa1..ccb5068 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:03:25 by charles ### ########.fr */ +/* Updated: 2020/06/14 16:22:08 by charles ### ########.fr */ /* */ /* ************************************************************************** */ @@ -110,5 +110,6 @@ int builtin_exit(char **argv, t_env env); */ char **preprocess(t_ftlst *tokens, t_env env); +char *preprocess_filename(t_ftlst *tokens, t_env env); #endif |
