/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_str_is_printable.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: gtertysh +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* 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); }