aboutsummaryrefslogtreecommitdiff
path: root/src/str/ft_strchr.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/str/ft_strchr.c')
-rw-r--r--src/str/ft_strchr.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/str/ft_strchr.c b/src/str/ft_strchr.c
deleted file mode 100644
index 50bfc0a..0000000
--- a/src/str/ft_strchr.c
+++ /dev/null
@@ -1,18 +0,0 @@
-/* ************************************************************************** */
-/* */
-/* ::: :::::::: */
-/* ft_strchr.c :+: :+: :+: */
-/* +:+ +:+ +:+ */
-/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
-/* +#+#+#+#+#+ +#+ */
-/* Created: 2019/10/07 10:14:47 by cacharle #+# #+# */
-/* Updated: 2019/11/21 01:04:52 by cacharle ### ########.fr */
-/* */
-/* ************************************************************************** */
-
-#include "libft.h"
-
-char *ft_strchr(const char *s, int c)
-{
- return (ft_memchr(s, c, ft_strlen(s) + 1));
-}