/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isdigit.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: rbousset +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/02/14 17:06:39 by rbousset #+# #+# */ /* Updated: 2020/02/14 17:06:39 by rbousset ### ########lyon.fr */ /* */ /* ************************************************************************** */ int ft_isdigit(int c) { if (c >= 48 && c <= 57) return (1); return (0); }