avr-fw-modules/core/src/ifact.c

10 lines
109 B
C
Raw Permalink Normal View History

2017-09-27 13:25:39 +02:00
#include <stdint.h>
int64_t ifact(int n) {
int64_t r = 1;
while (n > 1) {
r *= (n--);
};
return r;
};