-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_putstr_fd.c
19 lines (17 loc) · 996 Bytes
/
ft_putstr_fd.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putstr_fd.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jovicto2 <jovicto2@student.42sp.org.br> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/05/25 15:25:45 by jovicto2 #+# #+# */
/* Updated: 2023/05/25 15:26:55 by jovicto2 ### ########.fr */
/* */
/* ************************************************************************** */
#include "../includes/libft.h"
void ft_putstr_fd(char *s, int fd)
{
while (*s)
write(fd, s++, 1);
}