]> Kevux Git Server - fll/commitdiff
Cleanup: Remove () from while comment
authorKevin Day <kevin@kevux.org>
Fri, 16 Mar 2012 22:08:14 +0000 (17:08 -0500)
committerKevin Day <kevin@kevux.org>
Fri, 16 Mar 2012 22:08:14 +0000 (17:08 -0500)
The end of a while loop comment will no longer have open close parenthesis.

Thus:
  while (f_true) {
    // ..
  } // while()

Now becomes:
  while (f_true) {
    // ..
  } // while

level_1/fl_console/c/console.c
level_1/fl_strings/c/strings.c

index bb9cbbc45fc30deeb6ca4d7606d28283bf26b5f8..e89fc49cc0965f150cd43f981cade4a9cc4b6e66 100644 (file)
@@ -100,7 +100,7 @@ extern "C"{
           } // for()
 
           sub_location += increments;
-        } // while()
+        } // while
 
       // now handle the inverse commands
       } else if (argv[location][0] == f_console_symbol_disable) {
@@ -152,7 +152,7 @@ extern "C"{
           } // for()
 
           sub_location += increments;
-        } // while()
+        } // while
       } else {
         // use found to determine if the remaining parameter should be populated
         found = f_false;
@@ -204,7 +204,7 @@ extern "C"{
       }
 
       ++location;
-    } // while()
+    } // while
 
     if (extra_initiator.used > 0) {
       status = f_no_data;
index b3de2064125750c934ceb98cabd3d37281f15dd2..88baa84684bd47f6c860e9cfaa442817c520213c 100644 (file)
@@ -59,7 +59,7 @@ extern "C"{
 
       if (position->start >= buffer.used)    return f_none_on_eos;
       if (position->start  > position->stop) return f_none_on_stop;
-    } // while()
+    } // while
 
     return f_none;
   }
@@ -81,7 +81,7 @@ extern "C"{
 
       if (position->start >= buffer.used)    return f_none_on_eos;
       if (position->start  > position->stop) return f_none_on_stop;
-    } // while()
+    } // while
 
     return f_none;
   }
@@ -103,7 +103,7 @@ extern "C"{
 
       if (position->start >= buffer.used)    return f_none_on_eos;
       if (position->start  > position->stop) return f_none_on_stop;
-    } // while()
+    } // while
 
     return f_none;
   }
@@ -132,12 +132,12 @@ extern "C"{
     while (i1 < stop1) {
       if (string1[i1] != f_eos) return f_not_equal_to;
       i1++;
-    } // while()
+    } // while
 
     while (i2 < stop2) {
       if (string2[i2] != f_eos) return f_not_equal_to;
       i2++;
-    } // while()
+    } // while
 
     return f_equal_to;
   }
@@ -169,12 +169,12 @@ extern "C"{
     while (i1 < stop1) {
       if (string1.string[i1] != f_eos) return f_not_equal_to;
       i1++;
-    } // while()
+    } // while
 
     while (i2 < stop2) {
       if (string2.string[i2] != f_eos) return f_not_equal_to;
       i2++;
-    } // while()
+    } // while
 
     return f_equal_to;
   }
@@ -212,12 +212,12 @@ extern "C"{
     while (i1 < stop1) {
       if (string1.string[i1] != f_eos) return f_not_equal_to;
       i1++;
-    } // while()
+    } // while
 
     while (i2 < stop2) {
       if (string2.string[i2] != f_eos) return f_not_equal_to;
       i2++;
-    } // while()
+    } // while
 
     return f_equal_to;
   }