/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_putendl_fd.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: hulamy +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/11/19 18:38:05 by hulamy #+# #+# */ /* Updated: 2019/11/19 18:39:05 by hulamy ### ########.fr */ /* */ /* ************************************************************************** */ /* ** write the string s on the given file descriptor fd, followed by a newline */ #include "libft.h" void ft_putendl_fd(char *s, int fd) { ft_putstr_fd(s, fd); ft_putchar_fd('\n', fd); }