17 lines
939 B
C
17 lines
939 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_ft.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: jhalford <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2016/08/03 16:05:07 by jhalford #+# #+# */
|
|
/* Updated: 2016/08/03 16:06:44 by jhalford ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
void ft_ft(int *nbr)
|
|
{
|
|
*nbr = 42;
|
|
return ;
|
|
}
|