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

20 lines
986 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_ultimate_div_mod.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jhalford <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/08/03 16:11:51 by jhalford #+# #+# */
/* Updated: 2016/08/03 16:11:56 by jhalford ### ########.fr */
/* */
/* ************************************************************************** */
void ft_ultimate_div_mod(int *a, int *b)
{
int tmp;
tmp = *a;
*a /= *b;
*b = tmp % *b;
}