aboutsummaryrefslogtreecommitdiffstats
path: root/ft_strchr.c
diff options
context:
space:
mode:
Diffstat (limited to 'ft_strchr.c')
-rw-r--r--ft_strchr.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/ft_strchr.c b/ft_strchr.c
deleted file mode 100644
index 0952232..0000000
--- a/ft_strchr.c
+++ /dev/null
@@ -1,7 +0,0 @@
-#include "libft.h"
-
-char *
-ft_strchr (const char *s, int c)
-{
- return (ft_memchr (s, c, ft_strlen (s) + 1));
-}