42/d05/ex15/ft_str_is_printable.c

25 lines
1 KiB
C
Raw Permalink Normal View History

2016-11-20 02:20:23 +02:00
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_str_is_printable.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: gtertysh <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/11/01 16:56:24 by gtertysh #+# #+# */
/* Updated: 2016/11/01 17:00:42 by gtertysh ### ########.fr */
/* */
/* ************************************************************************** */
int ft_str_is_printable(char *str)
{
if (!*str)
return (1);
while (*str)
{
if (!(*str >= 32 && *str <= 127))
return (0);
str++;
}
return (1);
}