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