diff options
Diffstat (limited to 'src/ft_pwd.c')
-rw-r--r-- | src/ft_pwd.c | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/src/ft_pwd.c b/src/ft_pwd.c deleted file mode 100644 index 07e5622..0000000 --- a/src/ft_pwd.c +++ /dev/null @@ -1,26 +0,0 @@ -/* ************************************************************************** */ -/* LE - / */ -/* / */ -/* ft_pwd.c .:: .:/ . .:: */ -/* +:+:+ +: +: +:+:+ */ -/* By: rbousset <marvin@le-101.fr> +:+ +: +: +:+ */ -/* #+# #+ #+ #+# */ -/* Created: 2019/11/01 18:47:41 by rbousset #+# ## ## #+# */ -/* Updated: 2019/11/01 18:47:47 by rbousset ### #+. /#+ ###.fr */ -/* / */ -/* / */ -/* ************************************************************************** */ - -#include <libft.h> -#include <stddef.h> -#include <unistd.h> - -int -ft_pwd(void) -{ - char *buff; - - buff = NULL; - ft_putendl(getcwd(buff, 1000)); - return (0); -} |