20 lines
990 B
C
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);
|
|
}
|