/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ex11.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: tkondrac +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2021/08/08 15:48:26 by tkondrac #+# #+# */ /* Updated: 2021/08/11 16:50:37 by gbaconni ### ########.fr */ /* */ /* ************************************************************************** */ #include #include "../ex11/ft_putstr_non_printable.c" int main(void) { char c[] = "special : | speciaux : "; c[10] = '\n'; c[25] = 14; c[26] = 127; printf("%s\n ------ \n", c); ft_putstr_non_printable(c); return (0); }