summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/c/09602-bug_671.c
blob: a9d54ee8aa814ec202f58e28c3f7eaa712eee3d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#define FOO_MAX 10

bool foo[ FOO_MAX ];

void
foo_bar( int  a,
         int* b,
         bool foo[ FOO_MAX ] );

void
A()
{
    int  a;
    int* b;
    foo_bar( a, b, foo );
}