/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isdigit.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: mcolonna +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/10/02 16:44:20 by mcolonna #+# #+# */ /* Updated: 2023/10/02 16:47:07 by mcolonna ### ########.fr */ /* */ /* ************************************************************************** */ int ft_isdigit(int c) { return (c >= '0' && c <= '9'); }