aboutsummaryrefslogtreecommitdiff
path: root/lib/math.c
blob: 9cd9ceafe2cec5570b2303225cf6e265471757f1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// MIT License, Copyright (c) 2020 Marvin Borner

int pow(int base, int exp)
{
	if (exp < 0)
		return 0;

	if (!exp)
		return 1;

	int ret = base;
	for (int i = 1; i < exp; i++)
		ret *= base;
	return ret;
}