summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/expected/c/00055-braces-2.c
blob: 38447f8656feee4407a58003aaa6d647f35ec697 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
while (a >= 0)
{
   if (b)
   {
      for (j = 0; j < 10; j++)
      {
         if (j == b)
         {
            return;
         }
         a++;
      }
   }
   b--;
}