/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_putstr_fd.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: madumerg +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/11/03 14:33:15 by madumerg #+# #+# */ /* Updated: 2024/10/17 01:13:01 by adjoly ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" void ft_putstr_fd(char *s, int fd) { (void)write(fd, s, ft_strlen(s)); }