blob: ec4bb8bf3e6297d215aeb94739315b2509cf9597 (
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
|
/*
** old-style function starting with a C comment
*/
void oldstyle(single_before, multiple_before, end_of_line, multiple_eol)
/* single line before */
int single_before;
/*
* multiple
* lines before
*/
int multiple_before;
int end_of_line; /* end of the line */
int multiple_eol; /*
* multiple lines
* starting at
* the EOL
*/
{
/* blah, blah, blah, blah, blah! */
}
|