Initialize

This commit is contained in:
2021-12-16 09:29:17 +08:00
commit 6e0f72d7ed
22 changed files with 1550 additions and 0 deletions

6
cmath.c Normal file
View File

@@ -0,0 +1,6 @@
#include "cmath.h"
int GCD(int a, int b) {
if (b) while ((a %= b) && (b %= a));
return a + b;
}