ft_malloc/libft/ft_isprint.c
2025-11-28 19:50:58 +01:00

18 lines
969 B
C
Executable file

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isprint.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: thrieg <thrieg@student.42mulhouse.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/10/14 15:14:35 by thrieg #+# #+# */
/* Updated: 2025/02/16 19:03:47 by thrieg ### ########.fr */
/* */
/* ************************************************************************** */
int ft_isprint(int c)
{
if (c < 32 || c > 126)
return (0);
return (1);
}