-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_putstr_fd.c
32 lines (28 loc) · 1.1 KB
/
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
22
23
24
25
26
27
28
29
30
31
32
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putstr_fd.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ael-haib <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/01/19 18:36:30 by ael-haib #+# #+# */
/* Updated: 2024/01/23 06:13:34 by ael-haib ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_putstr_fd(char *s, int fd)
{
while (*s)
{
write(fd, s, 1);
s++;
}
}
/* int main()
{
int fd;
char s[] = "hello";
fd = open("hello", O_WRONLY | O_CREAT, 0777);
ft_putstr_fd(s, fd);
return(0);
} */