/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isprint.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: fgras-ca +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/02/03 12:43:03 by fgras-ca #+# #+# */ /* Updated: 2023/02/03 13:25:31 by fgras-ca ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" int ft_isprint(int c) { if (c >= 32 && c <= 126) return (1); return (0); }