mirror of
https://github.com/lifegpc/c-utils.git
synced 2026-06-07 05:38:45 +08:00
11 lines
141 B
C
11 lines
141 B
C
#ifndef _UTIL_CMATH_H
|
|
#define _UTIL_CMATH_H
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
int GCD(int a, int b);
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|