/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_ultimate_div_mod.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jayang <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/02/06 09:37:44 by jayang #+# #+# */
/* Updated: 2022/02/06 09:37:49 by jayang ### ########.fr */
/* */
/* ************************************************************************** */
#include <unistd.h>
void ft_ultimate_div_mod(int *a, int *b)
{
int temp;
temp = *a;
*a = *a / *b;
*b = temp % *b;
}