/* ************************************************************************** */ /* LE - / */ /* / */ /* ft_isprint.c .:: .:/ . .:: */ /* +:+:+ +: +: +:+:+ */ /* By: rbousset +:+ +: +: +:+ */ /* #+# #+ #+ #+# */ /* Created: 2019/10/07 18:23:39 by rbousset #+# ## ## #+# */ /* Updated: 2019/10/13 08:41:21 by rbousset ### #+. /#+ ###.fr */ /* / */ /* / */ /* ************************************************************************** */ int ft_isprint(int c) { if (c >= 32 && c <= 126) return (1); return (0); }