42-archive/42-piscine-c/d03/ex03/ft_div_mod.c
2016-08-25 20:50:28 +02:00

17 lines
976 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_div_mod.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jhalford <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/08/03 16:11:10 by jhalford #+# #+# */
/* Updated: 2016/08/03 18:21:41 by jhalford ### ########.fr */
/* */
/* ************************************************************************** */
void ft_div_mod(int a, int b, int *div, int *mod)
{
*div = a / b;
*mod = a % b;
}