blob: e57e6d57c4420c20ffab56803c4918ebf1a1a5f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* parameter names have underscores
* the underscores get removed in the documentation
*/
void underscore(
/* an int */
int __x,
/* a pointer to an int */
int *__y,
/* another pointer to an int, funnily enough */
int _z[],
/* a char, with a strange bit legal name */
char _,
/* an anonymous double */
double,
/* pointer to a function */
float (*__funcptr)(int *__a1, char __a2[]));
|