Files
libucore/src/gcd32.c
T
Nils O. Selåsdal 9090de0663 tabs->spaces
2013-11-22 20:07:06 +01:00

14 lines
171 B
C

#include "ucore/math.h"
uint32_t
uc_gcd_32(uint32_t a, uint32_t b)
{
while (b != 0) {
uint32_t t = b;
b = a%b;
a = t;
}
return a;
}