42/d03/ex04/ft_ultimate_div_mod.c

21 lines
993 B
C
Raw Permalink Normal View History

2016-11-20 02:20:23 +02:00
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_ultimate_div_mode.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: gtertysh <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/10/28 10:30:17 by gtertysh #+# #+# */
/* Updated: 2016/10/28 21:17:48 by gtertysh ### ########.fr */
/* */
/* ************************************************************************** */
void ft_ultimate_div_mod(int *a, int *b)
{
int temp;
temp = *a / *b;
*b = *a % *b;
*a = temp;
}