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