mirror of
https://github.com/Ladebeze66/Piscine42.git
synced 2025-12-16 05:58:07 +01:00
18 lines
976 B
C
Executable File
18 lines
976 B
C
Executable File
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_div_mod.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: fgras-ca <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2022/12/05 15:57:30 by fgras-ca #+# #+# */
|
|
/* Updated: 2022/12/07 09:17:14 by fgras-ca ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
void ft_div_mod(int a, int b, int *div, int *mod)
|
|
{
|
|
*div = a / b;
|
|
*mod = a % b;
|
|
}
|