/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isprint.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: tischmid +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/05/03 22:42:16 by tischmid #+# #+# */ /* Updated: 2023/05/03 23:03:52 by tischmid ### ########.fr */ /* */ /* ************************************************************************** */ #include int ft_isprint(int c) { return (16384 * ((c >= 32) && (c <= 126))); }