19 lines
1,000 B
C
Executable file
19 lines
1,000 B
C
Executable file
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_putendl_fd.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: thrieg <thrieg@student.42mulhouse.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/10/15 17:37:39 by thrieg #+# #+# */
|
|
/* Updated: 2025/02/16 19:04:21 by thrieg ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "libft.h"
|
|
|
|
void ft_putendl_fd(char *s, int fd)
|
|
{
|
|
ft_putstr_fd(s, fd);
|
|
ft_putchar_fd('\n', fd);
|
|
}
|