/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_ultimate_div_mod.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: jhalford +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* 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; }