1 2 3 4 5 6 7
#include "libft.h" char * ft_strchr (const char *s, int c) { return (ft_memchr (s, c, ft_strlen (s) + 1)); }