Codechange: Add function to get the power of ten for a given number

This commit is contained in:
Rubidium
2024-02-08 20:32:36 +01:00
committed by rubidium42
parent 8bccb5805a
commit f0c50ad529

View File

@@ -350,6 +350,19 @@ constexpr int RoundDivSU(int a, uint b)
}
}
/**
* Computes ten to the given power.
* @param power The power of ten to get.
* @return The power of ten.
*/
constexpr uint64_t PowerOfTen(int power)
{
assert(power >= 0 && power <= 20 /* digits in uint64_t */);
uint64_t result = 1;
for (int i = 0; i < power; i++) result *= 10;
return result;
}
uint32_t IntSqrt(uint32_t num);
#endif /* MATH_FUNC_HPP */