20 lines
1000 B
C
20 lines
1000 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_putendl_fd.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: tosuman <timo42@proton.me> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/06/09 14:27:38 by tosuman #+# #+# */
|
|
/* Updated: 2023/06/09 14:28:47 by tosuman ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "libft.h"
|
|
|
|
void ft_putendl_fd(char *s, int fd)
|
|
{
|
|
ft_putstr_fd(s, fd);
|
|
ft_putchar_fd('\n', fd);
|
|
}
|