From f92d78184cb8ff31648a623914f714baa27ee2e7 Mon Sep 17 00:00:00 2001 From: JozanLeClerc Date: Tue, 29 Sep 2020 19:29:59 +0200 Subject: Normized --- libft/src/ft_putstr.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'libft/src/ft_putstr.c') diff --git a/libft/src/ft_putstr.c b/libft/src/ft_putstr.c index 5cd7a6d..d4b0669 100644 --- a/libft/src/ft_putstr.c +++ b/libft/src/ft_putstr.c @@ -13,8 +13,7 @@ #include #include -int - ft_putstr(const char *s) +int ft_putstr(const char *s) { return (write(1, s, ft_strlen(s))); } -- cgit v1.2.3