Piscine42/C01/ex04/ft_ultimate_div_mod.c
2023-12-12 17:25:55 +01:00

21 lines
995 B
C
Executable File

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_ultimate_div_mod.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: fgras-ca <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/12/06 16:55:09 by fgras-ca #+# #+# */
/* Updated: 2022/12/07 09:50:31 by fgras-ca ### ########.fr */
/* */
/* ************************************************************************** */
void ft_ultimate_div_mod(int *a, int *b)
{
int swap;
swap = *a;
*a = swap / *b;
*b = swap % *b;
}