-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_putendl_fd.c
25 lines (22 loc) · 1.03 KB
/
ft_putendl_fd.c
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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putendl_fd.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: vduriez <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/08/21 15:46:49 by vduriez #+# #+# */
/* Updated: 2020/09/03 11:26:24 by vduriez ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_putendl_fd(char *s, int fd)
{
int i;
if (!s)
return ;
i = 0;
while (s[i])
write(fd, &s[i++], 1);
write(fd, "\n", 1);
}