summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/input/cpp/bool.cpp
blob: 30d4cb293d27ed90fd94463c294c8c3282402a13 (plain)
1
2
3
4
5
6
7
8
9
10
11
bool foo(char c)
{
   if (c == 'a')
   {
      return true;
   }
   else
   {
      return false;
   }
}