/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isprint.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: mcolonna +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/10/02 16:44:20 by mcolonna #+# #+# */ /* Updated: 2023/10/02 16:51:08 by mcolonna ### ########.fr */ /* */ /* ************************************************************************** */ int ft_isprint(int c) { return (c >= 32 && c <= 126); }