summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/input/c/sparen-indent.c
blob: fe7706814d36796137ef736d4e311ad81750b15c (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();
}

}