summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/expected/c/10013-sparen-indent.c
blob: b09a31020acd37f4441412c2557d6387f729d456 (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();
	}

}