26 lines
1011 B
C
26 lines
1011 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* print_fillit.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: vmanzoni <vmanzoni@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2019/03/01 13:35:48 by vmanzoni #+# #+# */
|
|
/* Updated: 2019/04/15 00:11:22 by hulamy ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "fillit.h"
|
|
|
|
/*
|
|
void ft_print_fillit()
|
|
{
|
|
|
|
}
|
|
*/
|
|
|
|
void print_test(char *test)
|
|
{
|
|
write(1, test, strlen(test));
|
|
}
|