/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isdigit.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: bgoulard +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/11/06 11:27:37 by bgoulard #+# #+# */ /* Updated: 2023/11/10 14:56:59 by bgoulard ### ########.fr */ /* */ /* ************************************************************************** */ int ft_isdigit(int c) { return (c >= '0' && c <= '9'); }