42-archive/42-piscine-c/d09/ex00/ft_generic.c
2016-08-25 20:50:28 +02:00

21 lines
1,010 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_generic.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jhalford <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/08/11 18:22:09 by jhalford #+# #+# */
/* Updated: 2016/08/11 18:22:21 by jhalford ### ########.fr */
/* */
/* ************************************************************************** */
#include <unistd.h>
void ft_generic(void)
{
char *tut;
tut = "Tu tu tu tu ; Tu tu tu tu\n";
write(1, tut, 26);
}