/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isprint.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: thrieg +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/10/14 15:14:35 by thrieg #+# #+# */ /* Updated: 2025/02/16 19:03:47 by thrieg ### ########.fr */ /* */ /* ************************************************************************** */ int ft_isprint(int c) { if (c < 32 || c > 126) return (0); return (1); }