summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/input/c/paren-indent.c
blob: df5b1c14a4a9cd5a0002a0fae88a510220810a02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
static void *foo(int param1,
   char *param2
    );


static void *foo
(
   int param1,
   char *param2
)
{
   for (
        int i = 0;
       i< 10;
         i++
          )
   {
      bar(
         arg1,
         arg2
         );
      if ( ( abc < bcd )
         &&( 123 < abc )
            )
      {
         none(arg1,
            arg2,
              arg3
            );
      }
   }
}


void CWarningAnalyzer::SetEffect(int FilterNumber
                              ,bool Exclude
                                 , int  Red
                                  , int  Green
                                  , int  Blue
                                   , bool Italic
                                , bool Bold
                                  , bool Underlined
                            )
{
   /* TODO */
}