aboutsummaryrefslogtreecommitdiff
path: root/ft_putendl_fd.c
diff options
context:
space:
mode:
Diffstat (limited to 'ft_putendl_fd.c')
-rw-r--r--ft_putendl_fd.c18
1 files changed, 15 insertions, 3 deletions
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 <marvin@42.fr> +#+ +:+ +#+ */
+/* +#+#+#+#+#+ +#+ */
+/* 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);
}