/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ex06.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: tkondrac +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2021/08/08 15:13:19 by tkondrac #+# #+# */ /* Updated: 2021/08/08 15:13:37 by tkondrac ### ########.fr */ /* */ /* ************************************************************************** */ #include #include "../ex06/ft_str_is_printable.c" int main(void) { char c[42]; while(1) { scanf("%s", c); printf("is printable ? : %d\n", ft_str_is_printable(c)); } return (0); }