summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/c/00053-brace.c
blob: 55c45a57bee33ac25eafcfd09e7d32c05f01696d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18



int function (int arg)
{
  int i;

  for (i = 0; i < 5; i++)
  {
    /* Do something... */
  }
  if (i < 0)
  {
    /*Do something else...*/
  }

  return (0);
}