fix number tokens and limits

This commit is contained in:
hugogogo
2026-05-26 12:48:36 +02:00
parent f1a6a8e586
commit c99bdfc63a
8 changed files with 577 additions and 481 deletions

View File

@@ -65,7 +65,7 @@ int gcd_int(int a, int b)
b = a % b;
a = tmp;
}
return abs(a);
return ft_abs(a);
}
// returns the gcd, and modify arguments with new reduced values