summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/expected/c/10012-sparen-indent.c
blob: d9ddbe06588dc1d0603a5fdcc4255a28f0fe11f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
void f(void) {

	if (a
	                && b) {
		h();
	}

	for (a = b;
	                c;
	                d++) {
		h();
	}

	while (z
	                && w) {
		h();
	}

}