aboutsummaryrefslogtreecommitdiff
path: root/ft_putstr.c
diff options
context:
space:
mode:
Diffstat (limited to 'ft_putstr.c')
-rw-r--r--ft_putstr.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/ft_putstr.c b/ft_putstr.c
deleted file mode 100644
index 14b01a3..0000000
--- a/ft_putstr.c
+++ /dev/null
@@ -1,18 +0,0 @@
-/* ************************************************************************** */
-/* */
-/* ::: :::::::: */
-/* ft_putstr.c :+: :+: :+: */
-/* +:+ +:+ +:+ */
-/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
-/* +#+#+#+#+#+ +#+ */
-/* Created: 2019/10/07 09:52:12 by cacharle #+# #+# */
-/* Updated: 2019/11/20 03:48:48 by cacharle ### ########.fr */
-/* */
-/* ************************************************************************** */
-
-#include "libft.h"
-
-void ft_putstr(char const *s)
-{
- ft_putstr_fd((char*)s, STDOUT_FILENO);
-}