summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/expected/c/00091-cond.c
blob: 840d4a6c72b82ea0f71ff933dca073d37304a643 (plain)
1
2
3
4
5
6
7
8
9
10

int foo1(bool b, int tv, int fv)
{
   return b ? tv : fv;
}

int foo2(bool b, int tv, int fv)
{
   return b ? tv : fv;
}