summaryrefslogtreecommitdiff
path: root/libft/ft_putendl_fd.c
diff options
context:
space:
mode:
Diffstat (limited to 'libft/ft_putendl_fd.c')
-rw-r--r--libft/ft_putendl_fd.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/libft/ft_putendl_fd.c b/libft/ft_putendl_fd.c
new file mode 100644
index 0000000..9fc0cb3
--- /dev/null
+++ b/libft/ft_putendl_fd.c
@@ -0,0 +1,19 @@
+/* ************************************************************************** */
+/* */
+/* ::: :::::::: */
+/* ft_putendl_fd.c :+: :+: :+: */
+/* +:+ +:+ +:+ */
+/* By: kdx <kdx @student.42angouleme.fr +#+ +:+ +#+ */
+/* +#+#+#+#+#+ +#+ */
+/* Created: 2022/09/29 02:23:50 by kdx #+# #+# */
+/* Updated: 2022/09/29 02:24:32 by kdx ### ########.fr */
+/* */
+/* ************************************************************************** */
+
+#include "libft.h"
+
+void ft_putendl_fd(char *s, int fd)
+{
+ ft_putstr_fd(s, fd);
+ ft_putchar_fd('\n', fd);
+}