16 lines
939 B
C
16 lines
939 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_add.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: jhalford <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2016/08/08 15:18:59 by jhalford #+# #+# */
|
|
/* Updated: 2016/08/08 15:19:48 by jhalford ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
int ft_mul(int a, int b)
|
|
{
|
|
return (a * b);
|
|
}
|