]> Kevux Git Server - fll/commitdiff
Cleanup: add space between while(
authorKevin Day <kevin@kevux.org>
Fri, 16 Mar 2012 22:06:56 +0000 (17:06 -0500)
committerKevin Day <kevin@kevux.org>
Fri, 16 Mar 2012 22:06:56 +0000 (17:06 -0500)
Fix syntax style to have a space after while and before (.

level_0/f_conversion/c/conversion.c
level_1/fl_fss/c/fss_basic_list.c
level_1/fl_fss/c/fss_extended.c
level_1/fl_fss/c/fss_macro.h

index e7bec4c2ca988c044deccce7f06b00ac4bc83320..869e257cabcbc3c79fb8467ebfef5015cb0de2a8 100644 (file)
@@ -141,7 +141,7 @@ extern "C"{
     f_u_long        scale            = 0;
     f_u_long        temp_digit       = 0;
 
-    while(current_location < location.stop) {
+    while (current_location < location.stop) {
       if (f_character_to_digit(string[current_location], &temp_digit) == f_none) {
 
         // when the scale exists, then we need to make the number larger, for this function the scale is base 10
@@ -176,7 +176,7 @@ extern "C"{
     f_u_long        scale            = 0;
     f_u_long        temp_digit       = 0;
 
-    while(current_location < location.stop) {
+    while (current_location < location.stop) {
       if (f_character_to_hexdigit(string[current_location], &temp_digit) == f_none) {
 
         // when the scale exists, then we need to make the number larger, for this function the scale is base 16
index dfb550e6c4bd1425962c551c0c9db06f1f10916c..097ab418111e48c724fc7e95dcc3836895d05725 100644 (file)
@@ -358,7 +358,7 @@ extern "C"{
             fl_macro_fss_content_return_on_overflow((*buffer), (*input), (*found), f_none_on_eos, f_none_on_stop)
 
             if (!isgraph(buffer->string[input->start])) {
-              while(buffer->string[input->start] != f_eol) {
+              while (buffer->string[input->start] != f_eol) {
                 ++input->start;
 
                 if (input->start >= buffer->used) {
index a3b74205fe7e38e54177bb698cc7a354b7c4159d..1a87b571bcba78c252860d1ecf732f5737052796 100644 (file)
@@ -249,7 +249,7 @@ extern "C"{
     }
 
     // seek to the end of the line
-    while(input->start < buffer->used && input->start <= input->stop && buffer->string[input->start] != f_eol) {
+    while (input->start < buffer->used && input->start <= input->stop && buffer->string[input->start] != f_eol) {
       ++input->start;
     }
 
index 43349762e6c3f6ad9a1fbd10ac3adfa625dd73d2..570d53c49147a44bcf4dcab24827a169e63a6a4c 100644 (file)
@@ -93,7 +93,7 @@ extern "C"{
 
 #ifndef _di_fl_macro_fss_object_seek_till_newline_
   #define fl_macro_fss_object_seek_till_newline(buffer, input, eos_status, stop_status) \
-    while(buffer.string[input.start] != f_eol) { \
+    while (buffer.string[input.start] != f_eol) { \
       ++input.start; \
       if (input.start >= buffer.used) { \
         return eos_status; \
@@ -106,7 +106,7 @@ extern "C"{
 
 #ifndef _di_fl_macro_fss_content_seek_till_newline_
   #define fl_macro_fss_content_seek_till_newline(buffer, input, found, eos_status, stop_status) \
-    while(buffer.string[input.start] != f_eol) { \
+    while (buffer.string[input.start] != f_eol) { \
       ++input.start; \
       if (input.start >= buffer.used) { \
         found.array[found.used].stop = input.stop; \