/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isprint.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: hulamy +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/11/25 13:55:43 by hulamy #+# #+# */ /* Updated: 2019/11/25 13:55:44 by hulamy ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" int ft_isprint(int c) { return (c >= 32 && c < 127); }