/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_div_mod.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/07/03 17:52:21 by cacharle #+# #+# */ /* Updated: 2019/07/04 06:12:43 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ void ft_div_mod(int a, int b, int *div, int *mod) { *div = a / b; *mod = a % b; }