21 lines
1,010 B
C
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);
|
|
}
|