aboutsummaryrefslogtreecommitdiffstats
path: root/tests/indent/c/func.c
blob: 0c1ede8e06010f81e5d23ecf75b7607298477884 (plain) (blame)
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
int f1(int x) {
    return 1;
}

int f2(int x)
{
    return 1;
}

int f3(
    int x
) {
    return 1;
}

int f4(
    int x,
    int y
) {
    return 1;
}

int f5(int x,
       int y)
{
    return 1;
}

int
f6(int x, int y)
{
    return 1;
}