/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_strchr.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2022/09/26 14:44:15 by cchauvet #+# #+# */ /* Updated: 2022/10/05 20:56:37 by cchauvet ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" char *ft_strchr(const char *s, int c) { while (*s != (char) c) { if (*s == 0) return (NULL); s++; } return ((char *) s); }