/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isprint.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: rparodi +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/11/06 14:06:53 by rparodi #+# #+# */ /* Updated: 2025/09/05 10:44:13 by rparodi ### ########.fr */ /* */ /* ************************************************************************** */ /** * @brief Check if the character is printable * * @param c the character * @return the character if can be print or 0 if not */ int ft_isprint(int c) { if (c >= 32 && c <= 126) return (1); return (0); }