-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_putendl_fd.c
More file actions
28 lines (25 loc) · 1.04 KB
/
ft_putendl_fd.c
File metadata and controls
28 lines (25 loc) · 1.04 KB
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
27
28
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putendl_fd.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: atutuncu <atutuncu@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/01/02 14:16:00 by atutuncu #+# #+# */
/* Updated: 2023/01/03 14:12:56 by atutuncu ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_putendl_fd(char *s, int fd)
{
size_t i;
i = 0;
if (!s)
return ;
while (s[i])
{
ft_putchar_fd(s[i], fd);
i++;
}
write(fd, "\n", 1);
}