/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isprint.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: kcolin +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/10/14 15:03:08 by kcolin #+# #+# */ /* Updated: 2024/10/14 15:04:52 by kcolin ### ########.fr */ /* */ /* ************************************************************************** */ int ft_isprint(int c) { if (c >= 0x20 && c <= 0x7e) return (1); else return (0); }