power
Default mainpageat91libutilitypower
Description Source Call Graph
Start Line: 81
unsigned int power(unsigned int x, unsigned int y)
{
    unsigned int result = 1;
    
    while (y > 0) {

        result *= x;
        y--;
    } 
    return result;
}