summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/c/00431-paren-indent.c
blob: 51a8085401379122f2be4b3402782635694bbfac (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 */
}