/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isdigit.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: thrieg +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/09/08 12:57:11 by thrieg #+# #+# */ /* Updated: 2025/02/16 19:03:45 by thrieg ### ########.fr */ /* */ /* ************************************************************************** */ int ft_isdigit(int c) { if (c < '0' || c > '9') return (0); return (1); }