/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isdigit.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: rparodi +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/11/06 12:44:28 by rparodi #+# #+# */ /* Updated: 2025/09/05 16:00:16 by rparodi ### ########.fr */ /* */ /* ************************************************************************** */ int ft_isdigit(int c) { if (c >= '0' && c <= '9') return (1); return (0); }