]> Kevux Git Server - fll/commitdiff
Cleanup: put space between do{
authorKevin Day <kevin@kevux.org>
Fri, 16 Mar 2012 22:05:17 +0000 (17:05 -0500)
committerKevin Day <kevin@kevux.org>
Fri, 16 Mar 2012 22:05:17 +0000 (17:05 -0500)
Fix the syntax style to have a space between do and {.

level_1/fl_file/c/file.c
level_1/fl_fss/c/fss_basic.c
level_1/fl_fss/c/fss_basic_list.c
level_1/fl_fss/c/fss_extended.c

index 651619856ae7bf17e16fa35cef46dab41f2eb43d..c821654a16a55b66c0c6032fe7201703d29932d2 100644 (file)
@@ -35,7 +35,7 @@ extern "C"{
     }
 
     // populate the buffer
-    do{
+    do {
       if (buffer->size <= size) {
         f_resize_dynamic_string(status, (*buffer), size);
 
index bb51c7dc14b0c2f8299f623b652fe87717b717bf..d89e5c33ecdd89c3830f3e97db849f55c67bb450 100644 (file)
@@ -66,7 +66,7 @@ extern "C"{
         quoted = buffer->string[input->start];
         input->start++;
       } else if (buffer->string[input->start] == f_fss_delimit_slash) {
-        do{
+        do {
           ++input->start;
 
           fl_macro_fss_skip_past_delimit_placeholders((*buffer), (*input))
@@ -117,7 +117,7 @@ extern "C"{
       // a dynamically populated location of all delimits to apply
       f_string_lengths delimits = f_string_lengths_initialize;
 
-      do{
+      do {
         fl_macro_fss_skip_past_delimit_placeholders((*buffer), (*input))
         fl_macro_fss_object_return_on_overflow((*buffer), (*input), (*found), f_none_on_eos, f_none_on_stop)
 
@@ -284,7 +284,7 @@ extern "C"{
     found->array[found->used].start = input->start;
 
     // search for valid content
-    do{
+    do {
       fl_macro_fss_skip_past_delimit_placeholders((*buffer), (*input))
       fl_macro_fss_content_return_on_overflow((*buffer), (*input), (*found), f_none_on_eos, f_none_on_stop)
 
index 58bc03ca6747fc44ed9917fc121ae755e79ce0b5..dfb550e6c4bd1425962c551c0c9db06f1f10916c 100644 (file)
@@ -104,7 +104,7 @@ extern "C"{
 
     // identify where the object ends
     if (quoted == f_eos) {
-      do{
+      do {
         fl_macro_fss_skip_past_delimit_placeholders((*buffer), (*input))
         fl_macro_fss_object_return_on_overflow((*buffer), (*input), (*found), f_error_on_eos, f_error_on_stop)
 
@@ -190,7 +190,7 @@ extern "C"{
       f_string_length quote_location = f_string_length_initialize;
 
       // the quote must end before the opener begins, in this case the colon ':', so a quoted object would look like: "quoted object":\n
-      do{
+      do {
         fl_macro_fss_skip_past_delimit_placeholders((*buffer), (*input))
         fl_macro_fss_object_return_on_overflow((*buffer), (*input), (*found), f_error_on_eos, f_error_on_stop)
 
@@ -270,7 +270,7 @@ extern "C"{
     f_string_length quote_delimit     = f_string_length_initialize;
 
     // search until stop point, end of string, or until a valid basic list object is found
-    do{
+    do {
       if (has_quote_delimit) {
         has_quote_delimit = f_false;
       }
@@ -353,7 +353,7 @@ extern "C"{
 
         // identify where the potential object ends
         if (quoted == f_eos) {
-          do{
+          do {
             fl_macro_fss_skip_past_delimit_placeholders((*buffer), (*input))
             fl_macro_fss_content_return_on_overflow((*buffer), (*input), (*found), f_none_on_eos, f_none_on_stop)
 
@@ -491,7 +491,7 @@ extern "C"{
           } while (f_true);
         } else {
           // the quote must end before the opener begins, in this case the colon ':', so a quoted object would look like: "quoted object":\n
-          do{
+          do {
             fl_macro_fss_skip_past_delimit_placeholders((*buffer), (*input))
             fl_macro_fss_content_return_on_overflow((*buffer), (*input), (*found), f_unterminated_group_on_eos, f_unterminated_group_on_stop)
 
index 81dcc49f70acdff8867cc61880925b2eae375f95..a3b74205fe7e38e54177bb698cc7a354b7c4159d 100644 (file)
@@ -66,7 +66,7 @@ extern "C"{
         quoted = buffer->string[input->start];
         input->start++;
       } else if (buffer->string[input->start] == f_fss_delimit_slash) {
-        do{
+        do {
           ++input->start;
 
           fl_macro_fss_skip_past_delimit_placeholders((*buffer), (*input))
@@ -117,7 +117,7 @@ extern "C"{
       // a dynamically populated location of all delimits to apply
       f_string_lengths delimits = f_string_lengths_initialize;
 
-      do{
+      do {
         fl_macro_fss_skip_past_delimit_placeholders((*buffer), (*input))
         fl_macro_fss_object_return_on_overflow((*buffer), (*input), (*found), f_none_on_eos, f_none_on_stop)
 
@@ -290,13 +290,13 @@ extern "C"{
       found->array[found->used].start = input->start;
 
       // this inner loop should read until whitespace is found then mark the end of a specific content field
-      do{
+      do {
         fl_macro_fss_skip_past_delimit_placeholders((*buffer), (*input))
         fl_macro_fss_content_return_on_overflow((*buffer), (*input), (*found), f_none_on_eos, f_none_on_stop)
 
         // handle delimited quotes, single quotes, and double quotes
         if (buffer->string[input->start] == f_fss_delimit_slash) {
-          do{
+          do {
             f_string_length first_slash = input->start;
             ++input->start;
 
@@ -348,7 +348,7 @@ extern "C"{
 
         // when quoted is null, then spaces will end the content, otherwise the quote defined in quoted will end the content (or a newline)
         if (quoted == f_eos) {
-          do{
+          do {
             fl_macro_fss_skip_past_delimit_placeholders((*buffer), (*input))
             fl_macro_fss_content_return_on_overflow((*buffer), (*input), (*found), f_none_on_eos, f_none_on_stop)
 
@@ -365,7 +365,7 @@ extern "C"{
             ++input->start;
           } while (f_true);
         } else {
-          do{
+          do {
             fl_macro_fss_skip_past_delimit_placeholders((*buffer), (*input))
             fl_macro_fss_content_return_on_overflow((*buffer), (*input), (*found), f_none_on_eos, f_none_on_stop)