summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/expected/cpp/30705-func_param.cpp
blob: 8bdb0ce8e6471e4f9e054a1d1fd9c566babcefae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
typedef short (*hello1)(char coolParam,
                        ushort *,
                        unsigned int anotherone);

short (*hello2)(char coolParam,
                ulong *,
                uchar,
                unsigned int anotherone);

short hello3(char coolParam,
             ushort *,
             unsigned int anotherone);

void x(custom_t *e, void (*funcptr));
void x(custom_t *e, void (*funcptr)[]);
void x(custom_t *e, void (*funcptr)(int, int));
void x(custom_t *e, void (*funcptr)(int, int)[]);