/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isprint.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: aortigos +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/09/20 17:57:36 by aortigos #+# #+# */ /* Updated: 2023/10/26 07:39:39 by aortigos ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" int ft_isprint(int c) { return (c >= 32 && c <= 126); }