feature: added echo cmd

changed printf ref to ft_printf
This commit is contained in:
Tanguy Maze
2019-11-03 00:45:38 +01:00
parent e6304a9f40
commit e89ccb64b2
3 changed files with 10 additions and 5 deletions

View File

@@ -6,7 +6,7 @@
/* By: tmaze <tmaze@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/09/20 14:41:08 by tmaze #+# #+# */
/* Updated: 2019/10/17 09:59:40 by tmaze ### ########.fr */
/* Updated: 2019/11/02 23:10:32 by tmaze ### ########.fr */
/* */
/* ************************************************************************** */
@@ -28,7 +28,7 @@ int cmd_setenv(char **argv, t_env **env)
}
else
{
printf("usage: setenv [KEY]=[value]\n");
ft_printf("usage: setenv [KEY]=[value]\n");
return (1);
}
}