42_C_PISCINE/BSQ/ft_is_printable.c
Camille Chauvet 29ed24d567 init
2023-05-17 16:45:25 +00:00

23 lines
1.0 KiB
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_is_printable.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/08/03 12:41:02 by cchauvet #+# #+# */
/* Updated: 2022/08/03 12:44:05 by cchauvet ### ########.fr */
/* */
/* ************************************************************************** */
int ft_is_printable(char *str)
{
while (*str != 0)
{
if (!(*str >= 32 && *str <= 126))
return (0);
str++;
}
return (1);
}