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

20 lines
990 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: axalves <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/08/06 10:46:44 by axalves #+# #+# */
/* Updated: 2016/08/07 22:39:24 by jhalford ### ########.fr */
/* */
/* ************************************************************************** */
void colle(int width, int heigth);
int main(void)
{
colle(10, 5);
colle(3, 7);
return (0);
}