27 lines
1.1 KiB
C
27 lines
1.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ex11.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: tkondrac <tkondrac@student.42lausan> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2021/08/08 15:48:26 by tkondrac #+# #+# */
|
|
/* Updated: 2021/08/11 16:50:37 by gbaconni ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include <stdio.h>
|
|
#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);
|
|
}
|