summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/expected/c/00092-cond.c
blob: a718a48b53c63695248a414663d7348822a7cae2 (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;
}