mirror of
https://github.com/Ladebeze66/Piscine42.git
synced 2025-12-16 05:58:07 +01:00
21 lines
995 B
C
Executable File
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;
|
|
}
|