github.com/Konstantin8105/c4go@v0.0.0-20240505174241-768bb1c65a51/tests/comment/main.c (about) 1 // comment1 2 3 /* comment2 */ 4 5 /* 6 * comment3 7 */ 8 9 void /* comment4 */ a /* comment5 */( /* comment6 */ int /* comment7 */ i /*comment8*/) // comment9 10 { 11 // comment10 12 // comment11 13 (/* comment12 */ void /* comment13 */)/*comment14*/(/*comment15*/ i /*comment16 */)/*comment17*/; 14 } 15 // comment18 16 //comment19 17 18 void b //comment20 19 ( // comment21 20 )//comment22 21 { //comment23 22 //comment24 23 int i = 9; 24 (void)(i); 25 }//comment25 26 27 28 int /* comment26 */ main () 29 { 30 int i = 0; 31 for ( i = 0 ; i < 5 ; i++) 32 { 33 if (i > 2) 34 {/*comment27*/ 35 a(i); 36 } else { 37 /* 38 * * * // comment28 39 */ 40 b(); 41 } 42 } 43 return 0; 44 } 45 /* 46 * comment29 47 * 48 * 49 * 50 */ 51 // comment30 52