summaryrefslogtreecommitdiffstats
path: root/src/ft_pwd.c
blob: 07e5622054c2e99e129da57a592d49211d840cd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* ************************************************************************** */
/*                                                          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);
}