-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_putendl_fd.c
32 lines (29 loc) · 1.14 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
26
27
28
29
30
31
32
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putendl_fd.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: amennad <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/03/29 16:59:02 by amennad #+# #+# */
/* Updated: 2023/04/04 09:41:22 by amennad ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
/**
* @Writes the character to the descriptor
*
* @param s: character string scanned
* @param fd : file descriptor
*/
void ft_putendl_fd(char *s, int fd)
{
int i;
i = 0;
while (s[i] != '\0')
{
write(fd, &s[i], 1);
i++;
}
write(fd, "\n", 1);
}