/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isprint.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: joelecle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/02/14 17:06:40 by joelecle #+# #+# */ /* Updated: 2020/02/14 17:06:40 by joelecle ### ########lyon.fr */ /* */ /* ************************************************************************** */ int ft_isprint(int c) { if (c >= 32 && c <= 126) return (1); return (0); }