/* ************************************************************************** */ /* */ /* ::: o_ :::::: ::: */ /* ft_isprint.c :+: / :+::+: :+: */ /* +:+ > +:++:+ +:+ */ /* By: whaffman +#+ +:+ +#++#++:++#++ */ /* +#+ +#+#+ +#++#+ +#+ \o/ */ /* Created: 2024/10/10 17:00:17 by whaffman #+#+# #+#+# #+# #+# | */ /* Updated: 2024/10/10 17:00:17 by whaffman ### ### ### ### / \ */ /* */ /* ************************************************************************** */ #include "libft.h" int ft_isprint(int c) { return (32 <= c && 126 >= c); }