move here

This commit is contained in:
root
2025-10-12 15:47:22 +00:00
commit 86e3373d6f
9 changed files with 184 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_div_mod.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: lfirmin <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/02/10 21:02:39 by lfirmin #+# #+# */
/* Updated: 2024/02/10 21:07:17 by lfirmin ### ########.fr */
/* */
/* ************************************************************************** */
void ft_div_mod(int a, int b, int *div, int *mod)
{
*div = a / b;
*mod = a % b;
}