github.com/Konstantin8105/c4go@v0.0.0-20240505174241-768bb1c65a51/tests/code_quality/for.c (about)

     1  void f1()
     2  {
     3      int i;
     4      for (i = 0; i < 10; i++) {
     5          ;
     6      }
     7  }
     8  
     9  void f2()
    10  {
    11      int i;
    12      for (i = 10; i > 0; i--) {
    13          ;
    14      }
    15  }
    16  
    17  void f3()
    18  {
    19  	int i = 3;
    20      for (i = 0; i < 10; i++) {
    21          ;
    22      }
    23  }
    24  
    25  void f4()
    26  {
    27      for (int i = 0; i < 10; i++) {
    28          ;
    29      }
    30  }