23 lines
1.0 KiB
C
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);
|
|
}
|