aboutsummaryrefslogtreecommitdiff
path: root/libft/src/io/ft_putendl.c
diff options
context:
space:
mode:
Diffstat (limited to 'libft/src/io/ft_putendl.c')
-rw-r--r--libft/src/io/ft_putendl.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/libft/src/io/ft_putendl.c b/libft/src/io/ft_putendl.c
new file mode 100644
index 0000000..880977e
--- /dev/null
+++ b/libft/src/io/ft_putendl.c
@@ -0,0 +1,18 @@
+/* ************************************************************************** */
+/* */
+/* ::: :::::::: */
+/* ft_putendl.c :+: :+: :+: */
+/* +:+ +:+ +:+ */
+/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
+/* +#+#+#+#+#+ +#+ */
+/* Created: 2019/10/07 10:42:54 by cacharle #+# #+# */
+/* Updated: 2019/11/20 04:00:32 by cacharle ### ########.fr */
+/* */
+/* ************************************************************************** */
+
+#include "libft.h"
+
+void ft_putendl(char *s)
+{
+ ft_putendl_fd(s, STDOUT_FILENO);
+}