libft/ft_isprint.c

20 lines
981 B
C
Raw Permalink Normal View History

2024-10-14 15:09:25 +02:00
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isprint.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: kcolin <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/10/14 15:03:08 by kcolin #+# #+# */
/* Updated: 2024/10/14 15:04:52 by kcolin ### ########.fr */
/* */
/* ************************************************************************** */
int ft_isprint(int c)
{
if (c >= 0x20 && c <= 0x7e)
return (1);
else
return (0);
}