File: main.c

package info (click to toggle)
c2go 0.26.11-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,052 kB
  • sloc: ansic: 6,037; sh: 82; makefile: 5
file content (51 lines) | stat: -rw-r--r-- 637 bytes parent folder | download | duplicates (3)
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
// comment1

/* comment2 */

/*
 * comment3
 */

void /* comment4 */ a /* comment5 */( /* comment6 */ int /* comment7 */ i /*comment8*/) // comment9
{
	// comment10
	// comment11
	(/* comment12 */ void /* comment13 */)/*comment14*/(/*comment15*/ i /*comment16 */)/*comment17*/;
}
// comment18
//comment19

void b //comment20
( // comment21
 )//comment22
{ //comment23
//comment24
int i = 9;
(void)(i);
}//comment25


void /* comment26 */ main ()
{
	int i = 0;
	for ( i = 0 ; i < 5 ; i++)
	{
		if (i > 2)
		{/*comment27*/
			a(i);
		} else {
			/*
			 * * * // comment28
			*/
			b();
		}
	}
}
/*
 * comment29
 *
 *
 * 
 */
// comment30