minishell/libft/libft/ft_isprint.c
2025-02-12 15:12:42 +01:00

16 lines
949 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isprint.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jguelen <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/10/15 16:52:39 by jguelen #+# #+# */
/* Updated: 2024/10/23 15:58:31 by jguelen ### ########.fr */
/* */
/* ************************************************************************** */
int ft_isprint(int c)
{
return (c >= 32 && c <= 126);
}