-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_putstr_fd.c
21 lines (18 loc) · 1006 Bytes
/
ft_putstr_fd.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putstr_fd.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rapcampo <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/10/12 13:37:38 by rapcampo #+# #+# */
/* Updated: 2023/10/15 16:34:03 by rapcampo ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_putstr_fd(char *s, int fd)
{
size_t len;
len = ft_strlen(s);
write(fd, s, len);
}