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_putstr_fd.c | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) (limited to 'ft_putstr_fd.c') diff --git a/ft_putstr_fd.c b/ft_putstr_fd.c index d7c2756..7053650 100644 --- a/ft_putstr_fd.c +++ b/ft_putstr_fd.c @@ -1,7 +1,19 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* ft_putstr_fd.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: cacharle +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2019/10/07 10:40:15 by cacharle #+# #+# */ +/* Updated: 2019/10/07 10:40:22 by cacharle ### ########.fr */ +/* */ +/* ************************************************************************** */ + #include -void ft_putstr_fd(char const *s, int fd) +void ft_putstr_fd(char const *s, int fd) { - while (*s) - write(fd, s++, 1); + while (*s) + write(fd, s++, 1); } -- cgit