/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_putendl_fd.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: scebula +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2015/11/26 12:40:02 by scebula #+# #+# */ /* Updated: 2015/11/26 12:40:47 by scebula ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" void ft_putendl_fd(char const *s, int fd) { ft_putstr_fd(s, fd); ft_putchar_fd('\n', fd); }