-
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.06 KB
/
Copy pathft_putendl_fd.c
File metadata and controls
28 lines (25 loc) · 1.06 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: ysoroko <ysoroko@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/11/22 13:24:52 by ysoroko #+# #+# */
/* Updated: 2020/11/22 13:57:04 by ysoroko ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_putendl_fd(char *s, int fd)
{
int i;
i = 0;
if (s == 0)
return ;
while (s[i] != '\0')
{
ft_putchar_fd(s[i], fd);
i++;
}
ft_putchar_fd('\n', fd);
}