/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isprint.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: nalebrun +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/10/10 11:23:47 by nalebrun #+# #+# */ /* Updated: 2024/11/25 16:14:48 by nalebrun ### ########.fr */ /* */ /* ************************************************************************** */ #include "../../libft.h" int ft_isprint(int c) { if (c >= 32 && c <= 126) return (1); else return (0); }