summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.74.0/tests/input/c/cond.c
blob: aec2f0a389f74a7a11b62ee045633d87f0806e1e (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;
}