libft/ft_isprint.c

19 lines
983 B
C

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