moved env functions to libft

This commit is contained in:
Tanguy Maze
2019-12-25 11:45:05 +01:00
parent 2362474fd6
commit 8a421600f4
18 changed files with 320 additions and 203 deletions

View File

@@ -14,9 +14,9 @@
int cmd_echo(char **argv, t_env **env)
{
(void)env;
int i;
(void)env;
i = 1;
while (argv[i])
ft_printf("%s ", argv[i++]);