-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_putstr_fd.c
59 lines (51 loc) · 1.45 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putstr_fd.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: yuske <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/10/27 07:35:53 by yfurutat #+# #+# */
/* Updated: 2022/11/19 22:49:40 by yuske ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
// int main(int argc, char *argv[])
// {
// unsigned int fd;
// char *s;
// fd = atoi(argv[1]);
// s = argv[2];
// ft_putstr_fd(s, fd);
// }
// void ft_putstr_fd(char *s, int fd)
// {
// size_t len;
// if (!s)
// return ;
// len = ft_strlen(s);
// write(fd, s, len);
// }
// void ft_putstr_fd(char *s, int fd)
// {
// size_t i;
// i = 0;
// if (!s)
// return ;
// while (s[i])
// {
// ft_putchar_fd(s[i], fd);
// i++;
// }
// }
//7L
void ft_putstr_fd(char *s, int fd)
{
if (!s)
return ;
while (*s)
{
ft_putchar_fd(*s, fd);
s++;
}
}