/* ************************************************************************** */ /* LE - / */ /* / */ /* ft_pwd.c .:: .:/ . .:: */ /* +:+:+ +: +: +:+:+ */ /* By: rbousset +:+ +: +: +:+ */ /* #+# #+ #+ #+# */ /* Created: 2019/11/01 18:47:41 by rbousset #+# ## ## #+# */ /* Updated: 2019/11/01 18:47:47 by rbousset ### #+. /#+ ###.fr */ /* / */ /* / */ /* ************************************************************************** */ #include #include #include int ft_pwd(void) { char *buff; buff = NULL; ft_putendl(getcwd(buff, 1000)); return (0); }