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

10
cmath.h Normal file
View File

@@ -0,0 +1,10 @@
#ifndef _UTIL_CMATH_H
#define _UTIL_CMATH_H
#ifdef __cplusplus
extern "C" {
#endif
int GCD(int a, int b);
#ifdef __cplusplus
}
#endif
#endif