first commit

This commit is contained in:
KeyZox committed 2023-08-06 20:12:38 +02:00
1 parent 1fe062c970
commit eb6b113e51
125 files changed
+2987

No files matched your search

+7
View File
@@ -0,0 +1,7 @@
#include <stdio.h>
void ft_div_mod(int a, int b, int *div, int *mod)
{
*div = a / b;
*mod = a % b;
}