19 lines
263 B
C
19 lines
263 B
C
|
#include <stdint.h>
|
||
|
|
||
|
#if defined(WIN32) || defined(_WIN32)
|
||
|
#define EXPORT __declspec(dllexport)
|
||
|
#else
|
||
|
#define EXPORT
|
||
|
#endif
|
||
|
|
||
|
EXPORT uint64_t factorial(int max) {
|
||
|
int i = max;
|
||
|
uint64_t result = 1;
|
||
|
|
||
|
while (i >= 2) {
|
||
|
result *= i--;
|
||
|
}
|
||
|
|
||
|
return result;
|
||
|
}
|