summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/expected/c/00011-braces.c
blob: 893a32f6c691415c0b3db37625199ea3d243a08c (plain)
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87

void foo(void)
{
        int a = 0;
        while (a < 3)
        {
                a++;
        }

        while (b < a) // trailing C++ comment
                b++;

        do // trailing C++ comment
        {
                a--;
        } while (a > 0);

        do
                a--;
        while (a > 0);

        for (a = 0; a < 10; a++) // trailing C++ comment
        {
                printf("a=%d\n", a);
        }

        if (a == 10) // trailing C++ comment
        {
                printf("a looks good\n");
        }
        else // trailing C++ comment
        {
                printf("not so good\n");
        }

        if (state == ST_RUN)
        {
                if ((foo < bar) &&
                    (bar > foo2))
                {
                        if (a < 5)
                        {
                                a *= a;
                        }
                        else if (b != 0)
                                a /= b;
                        else // trailing C++ comment
                                a += b;
                }
        }

        list_for_each(k)
        {
                if (a)
                        if (b)
                        {
                                c++;
                        }
        }


        while (1)
                ; /* hang forever */
}

void f()
{
        if (buf[0] == '~' && strchr(tmp, '/') == NULL)
        {
                buf = mallocstrcpy(buf, tmp);
                matches = username_tab_completion(tmp, &num_matches);
        }
        /* If we're in the middle of the original line, copy the string
           only up to the cursor position into buf, so tab completion
           will result in buf's containing only the tab-completed
           path/filename. */
        else if (strlen(buf) > strlen(tmp))
                buf = mallocstrcpy(buf, tmp);
}

void f()
{
}
void g()
{
}