/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isprint.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: jhalford +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2016/11/03 14:56:38 by jhalford #+# #+# */ /* Updated: 2016/11/03 15:32:40 by jhalford ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" int ft_isprint(int c) { if (c >= 32 && c <= 126) return (c); return (0); }