-
Notifications
You must be signed in to change notification settings - Fork 2
/
ft_putendl.c
22 lines (20 loc) · 1019 Bytes
/
ft_putendl.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putendl.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: smbaabu <smbaabu@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/02/24 14:48:05 by smbaabu #+# #+# */
/* Updated: 2019/02/27 00:39:51 by smbaabu ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_putendl(char const *s)
{
if (!s)
return ;
while (*s)
write(1, s++, 1);
write(1, "\n", 1);
}