/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isdigit.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: vvobis +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/04/02 16:14:56 by vvobis #+# #+# */ /* Updated: 2024/04/02 19:38:45 by vvobis ### ########.fr */ /* */ /* ************************************************************************** */ int ft_isdigit(int c) { if (c >= '0' && c <= '9') return (1); return (0); }