ft_putstr_fd.c
1 /* ************************************************************************** */ 2 /* */ 3 /* ::: :::::::: */ 4 /* ft_putstr_fd.c :+: :+: :+: */ 5 /* +:+ +:+ +:+ */ 6 /* By: ll-hotel <ll-hotel@student.42.fr> +#+ +:+ +#+ */ 7 /* +#+#+#+#+#+ +#+ */ 8 /* Created: 2023/11/27 03:08:27 by ll-hotel #+# #+# */ 9 /* Updated: 2023/11/27 03:09:16 by ll-hotel ### ########.fr */ 10 /* */ 11 /* ************************************************************************** */ 12 13 #include <unistd.h> 14 15 int ft_putstr_fd(char *s, int fd) 16 { 17 unsigned long l; 18 19 l = 0; 20 while (s[l]) 21 l += 1; 22 return (write(fd, s, l)); 23 }