dfmt icon indicating copy to clipboard operation
dfmt copied to clipboard

support linux kernel brace style

Open FraMecca opened this issue 6 years ago • 0 comments

int power(int x, int y)
{
    int result;

    if (y < 0) {
         result = 0;
    } else {
         result = 1;
         while (y-- > 0)
             result *= x;
    }
    return result;
}

FraMecca avatar Jun 04 '19 12:06 FraMecca