20 lines
1000 B
C
Executable File
20 lines
1000 B
C
Executable File
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_putendl_fd.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: hexplor <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/11/23 14:34:12 by hexplor #+# #+# */
|
|
/* Updated: 2023/11/24 17:45:40 by hexplor ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "libft.h"
|
|
|
|
void ft_putendl_fd(char *s, int fd)
|
|
{
|
|
ft_putstr_fd(s, fd);
|
|
ft_putchar_fd('\n', fd);
|
|
}
|