-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_putendl.c
20 lines (18 loc) · 1017 Bytes
/
ft_putendl.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putendl.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: dbrophy <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/19 12:56:47 by dbrophy #+# #+# */
/* Updated: 2020/02/19 12:56:47 by dbrophy ### ########.fr */
/* */
/* ************************************************************************** */
#include "unistd.h"
#include "libft.h"
void ft_putendl(const char *s)
{
write(1, s, ft_strlen(s));
write(1, "\n", 1);
}