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

}