aboutsummaryrefslogtreecommitdiff
path: root/ft_putendl.c
diff options
context:
space:
mode:
Diffstat (limited to 'ft_putendl.c')
-rw-r--r--ft_putendl.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/ft_putendl.c b/ft_putendl.c
new file mode 100644
index 0000000..0e9eaed
--- /dev/null
+++ b/ft_putendl.c
@@ -0,0 +1,8 @@
+#include <unistd.h>
+#include "libft.h"
+
+void ft_putendl(char const *s)
+{
+ ft_putstr(s);
+ ft_putchar('\n');
+}