-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_putstr_pf.c
More file actions
28 lines (24 loc) · 1.03 KB
/
Copy pathft_putstr_pf.c
File metadata and controls
28 lines (24 loc) · 1.03 KB
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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putstr_pf.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rahidalg <rahidalg@student.42madrid.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/05/02 20:01:11 by rahidalg #+# #+# */
/* Updated: 2024/05/02 20:02:11 by rahidalg ### ########.fr */
/* */
/* ************************************************************************** */
#include "libftprintf.h"
#include <fcntl.h>
int ft_putstr_pf(char *s, int fd)
{
size_t i;
i = 0;
while (s[i])
{
write(fd, &s[i], 1);
i++;
}
return (i);
}