/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_putstr_fd.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: aortigos +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/10/22 19:17:32 by aortigos #+# #+# */ /* Updated: 2023/10/22 19:23:17 by aortigos ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" void ft_putstr_fd(char *s, int fd) { int i; i = 0; while (s[i]) { write(fd, &s[i], 1); i++; } }