From 10b4feb67c8af2b099dabd66f948b02e180bae0d Mon Sep 17 00:00:00 2001 From: Cabergs Charles Date: Mon, 7 Oct 2019 11:35:51 +0200 Subject: Normed everything Created a few dummy functions to resolve functions having more than 25 lines. --- ft_putendl_fd.c | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) (limited to 'ft_putendl_fd.c') diff --git a/ft_putendl_fd.c b/ft_putendl_fd.c index 58ca452..c1ed236 100644 --- a/ft_putendl_fd.c +++ b/ft_putendl_fd.c @@ -1,7 +1,19 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* ft_putendl_fd.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: cacharle +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2019/10/07 10:44:06 by cacharle #+# #+# */ +/* Updated: 2019/10/07 10:44:14 by cacharle ### ########.fr */ +/* */ +/* ************************************************************************** */ + #include "libft.h" -void ft_putendl_fd(char const *s, int fd) +void ft_putendl_fd(char const *s, int fd) { - ft_putstr_fd(s, fd); - ft_putchar_fd('\n', fd); + ft_putstr_fd(s, fd); + ft_putchar_fd('\n', fd); } -- cgit