#include <libft.h>
#include <stddef.h>
#include <unistd.h>

int
ft_pwd(void)
{
	char *buff;

	buff = NULL;
	ft_putendl(getcwd(buff, 1000));
	return (0);
}