aboutsummaryrefslogtreecommitdiffstats
path: root/ft_memchr.c
diff options
context:
space:
mode:
Diffstat (limited to 'ft_memchr.c')
-rw-r--r--ft_memchr.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/ft_memchr.c b/ft_memchr.c
deleted file mode 100644
index 08d5c3e..0000000
--- a/ft_memchr.c
+++ /dev/null
@@ -1,16 +0,0 @@
-#include "libft.h"
-
-void *
-ft_memchr (const void *s, int c, size_t n)
-{
- const unsigned char *ptr;
-
- ptr = s;
- while (n--)
- {
- if (*ptr == (unsigned char)c)
- return ((void *)ptr);
- ptr++;
- }
- return (NULL);
-}