From 9a2b208985ac7d4644c718ada74770b98eeb4598 Mon Sep 17 00:00:00 2001 From: Charles Date: Mon, 29 Jul 2019 16:56:27 +0200 Subject: part 2 done (except putchar and putstr unicode) --- ft_putendl_fd.c | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 ft_putendl_fd.c (limited to 'ft_putendl_fd.c') diff --git a/ft_putendl_fd.c b/ft_putendl_fd.c new file mode 100644 index 0000000..58ca452 --- /dev/null +++ b/ft_putendl_fd.c @@ -0,0 +1,7 @@ +#include "libft.h" + +void ft_putendl_fd(char const *s, int fd) +{ + ft_putstr_fd(s, fd); + ft_putchar_fd('\n', fd); +} -- cgit