]> Kevux Git Server - fll/commitdiff
Cleanup: Remove '_string' from the FSS write functions.
authorKevin Day <thekevinday@gmail.com>
Thu, 16 Dec 2021 21:57:55 +0000 (15:57 -0600)
committerKevin Day <thekevinday@gmail.com>
Thu, 16 Dec 2021 21:57:55 +0000 (15:57 -0600)
The read functions do not have _string().
This makes the code more consistent.

27 files changed:
level_1/fl_fss/c/fss_basic.c
level_1/fl_fss/c/fss_basic.h
level_1/fl_fss/c/fss_basic_list.c
level_1/fl_fss/c/fss_basic_list.h
level_1/fl_fss/c/fss_embedded_list.c
level_1/fl_fss/c/fss_embedded_list.h
level_1/fl_fss/c/fss_extended.c
level_1/fl_fss/c/fss_extended.h
level_1/fl_fss/c/fss_extended_list.c
level_1/fl_fss/c/fss_extended_list.h
level_1/fl_fss/c/private-fss.c
level_1/fl_fss/c/private-fss.h
level_2/fll_fss/c/fss_basic.c
level_2/fll_fss/c/fss_basic.h
level_2/fll_fss/c/fss_basic_list.c
level_2/fll_fss/c/fss_basic_list.h
level_2/fll_fss/c/fss_embedded_list.c
level_2/fll_fss/c/fss_embedded_list.h
level_2/fll_fss/c/fss_extended.c
level_2/fll_fss/c/fss_extended.h
level_2/fll_fss/c/fss_extended_list.c
level_2/fll_fss/c/fss_extended_list.h
level_3/fss_basic_list_write/c/private-fss_basic_list_write.c
level_3/fss_basic_write/c/private-fss_basic_write.c
level_3/fss_embedded_list_write/c/private-fss_embedded_list_write.c
level_3/fss_extended_list_write/c/private-fss_extended_list_write.c
level_3/fss_extended_write/c/private-fss_extended_write.c

index 094caf383b0c08359437a007aa6c58a81659f9cf..18b4bc99afc9b31b3b735c13665a60cdd448aba3 100644 (file)
@@ -92,8 +92,8 @@ extern "C" {
   }
 #endif // _di_fl_fss_basic_content_read_
 
-#ifndef _di_fl_fss_basic_object_write_string_
-  f_status_t fl_fss_basic_object_write_string(const f_string_static_t object, const f_fss_quote_t quote, const uint8_t complete, f_state_t state, f_string_range_t *range, f_string_dynamic_t *destination) {
+#ifndef _di_fl_fss_basic_object_write_
+  f_status_t fl_fss_basic_object_write(const f_string_static_t object, const f_fss_quote_t quote, const uint8_t complete, f_state_t state, f_string_range_t *range, f_string_dynamic_t *destination) {
     #ifndef _di_level_1_parameter_checking_
       if (!range) return F_status_set_error(F_parameter);
       if (!destination) return F_status_set_error(F_parameter);
@@ -149,10 +149,10 @@ extern "C" {
 
     return status;
   }
-#endif // _di_fl_fss_basic_object_write_string_
+#endif // _di_fl_fss_basic_object_write_
 
-#ifndef _di_fl_fss_basic_content_write_string_
-  f_status_t fl_fss_basic_content_write_string(const f_string_static_t content, const uint8_t complete, f_state_t state, f_string_range_t *range, f_string_dynamic_t *destination) {
+#ifndef _di_fl_fss_basic_content_write_
+  f_status_t fl_fss_basic_content_write(const f_string_static_t content, const uint8_t complete, f_state_t state, f_string_range_t *range, f_string_dynamic_t *destination) {
     #ifndef _di_level_1_parameter_checking_
       if (!range) return F_status_set_error(F_parameter);
       if (!destination) return F_status_set_error(F_parameter);
@@ -219,7 +219,7 @@ extern "C" {
 
     return F_none_eos;
   }
-#endif // _di_fl_fss_basic_content_write_string_
+#endif // _di_fl_fss_basic_content_write_
 
 #ifdef __cplusplus
 } // extern "C"
index 22bbd30dfc060daa95867364012a7b28812226f3..1dcb9a55506923b5f101fcadbc4915fd47c738af 100644 (file)
@@ -184,9 +184,9 @@ extern "C" {
  *   Errors (with error bit) from: f_fss_is_space().
  *   Errors (with error bit) from: f_utf_buffer_increment().
  */
-#ifndef _di_fl_fss_basic_object_write_string_
-  extern f_status_t fl_fss_basic_object_write_string(const f_string_static_t object, const f_fss_quote_t quote, const uint8_t complete, f_state_t state, f_string_range_t *range, f_string_dynamic_t *destination);
-#endif // _di_fl_fss_basic_object_write_string_
+#ifndef _di_fl_fss_basic_object_write_
+  extern f_status_t fl_fss_basic_object_write(const f_string_static_t object, const f_fss_quote_t quote, const uint8_t complete, f_state_t state, f_string_range_t *range, f_string_dynamic_t *destination);
+#endif // _di_fl_fss_basic_object_write_
 
 /**
  * Write an fss-0000 content from a given string.
@@ -230,9 +230,9 @@ extern "C" {
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_string_too_large (with error bit) if appended string length is too large to store in the destination.
  */
-#ifndef _di_fl_fss_basic_content_write_string_
-  extern f_status_t fl_fss_basic_content_write_string(const f_string_static_t content, const uint8_t complete, f_state_t state, f_string_range_t *range, f_string_dynamic_t *destination);
-#endif // _di_fl_fss_basic_content_write_string_
+#ifndef _di_fl_fss_basic_content_write_
+  extern f_status_t fl_fss_basic_content_write(const f_string_static_t content, const uint8_t complete, f_state_t state, f_string_range_t *range, f_string_dynamic_t *destination);
+#endif // _di_fl_fss_basic_content_write_
 
 #ifdef __cplusplus
 } // extern "C"
index 73cf0a11b5eb5560cc18a5396f493b26f1b1044d..e56219d606067781c0ad19de49d16837944baa57 100644 (file)
@@ -539,8 +539,8 @@ extern "C" {
   }
 #endif // _di_fl_fss_basic_list_content_read_
 
-#ifndef _di_fl_fss_basic_list_object_write_string_
-  f_status_t fl_fss_basic_list_object_write_string(const f_string_static_t object, const uint8_t complete, f_state_t state, f_string_range_t *range, f_string_dynamic_t *destination) {
+#ifndef _di_fl_fss_basic_list_object_write_
+  f_status_t fl_fss_basic_list_object_write(const f_string_static_t object, const uint8_t complete, f_state_t state, f_string_range_t *range, f_string_dynamic_t *destination) {
     #ifndef _di_level_1_parameter_checking_
       if (!destination) return F_status_set_error(F_parameter);
     #endif // _di_level_1_parameter_checking_
@@ -753,10 +753,10 @@ extern "C" {
 
     return F_none;
   }
-#endif // _di_fl_fss_basic_list_object_write_string_
+#endif // _di_fl_fss_basic_list_object_write_
 
-#ifndef _di_fl_fss_basic_list_content_write_string_
-  f_status_t fl_fss_basic_list_content_write_string(const f_string_static_t content, const uint8_t complete, const f_string_static_t *prepend, f_state_t state, f_string_range_t *range, f_string_dynamic_t *destination) {
+#ifndef _di_fl_fss_basic_list_content_write_
+  f_status_t fl_fss_basic_list_content_write(const f_string_static_t content, const uint8_t complete, const f_string_static_t *prepend, f_state_t state, f_string_range_t *range, f_string_dynamic_t *destination) {
     #ifndef _di_level_1_parameter_checking_
       if (!range) return F_status_set_error(F_parameter);
       if (!destination) return F_status_set_error(F_parameter);
@@ -988,7 +988,7 @@ extern "C" {
 
     return F_none;
   }
-#endif // _di_fl_fss_basic_list_content_write_string_
+#endif // _di_fl_fss_basic_list_content_write_
 
 #ifdef __cplusplus
 } // extern "C"
index afb852ffa7f1ac51608489ec89522114494f405f..7814e16024c84cfe2f835d9c6b7707072ce3e42c 100644 (file)
@@ -192,9 +192,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_utf_buffer_increment().
  */
-#ifndef _di_fl_fss_basic_list_object_write_string_
-  extern f_status_t fl_fss_basic_list_object_write_string(const f_string_static_t object, const uint8_t complete, f_state_t state, f_string_range_t *range, f_string_dynamic_t *destination);
-#endif // _di_fl_fss_basic_list_object_write_string_
+#ifndef _di_fl_fss_basic_list_object_write_
+  extern f_status_t fl_fss_basic_list_object_write(const f_string_static_t object, const uint8_t complete, f_state_t state, f_string_range_t *range, f_string_dynamic_t *destination);
+#endif // _di_fl_fss_basic_list_object_write_
 
 /**
  * Write an fss-0002 content from a given string.
@@ -246,9 +246,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_utf_buffer_increment().
  */
-#ifndef _di_fl_fss_basic_list_content_write_string_
-  extern f_status_t fl_fss_basic_list_content_write_string(const f_string_static_t content, const uint8_t complete, const f_string_static_t *prepend, f_state_t state, f_string_range_t *range, f_string_dynamic_t *destination);
-#endif // _di_fl_fss_basic_list_content_write_string_
+#ifndef _di_fl_fss_basic_list_content_write_
+  extern f_status_t fl_fss_basic_list_content_write(const f_string_static_t content, const uint8_t complete, const f_string_static_t *prepend, f_state_t state, f_string_range_t *range, f_string_dynamic_t *destination);
+#endif // _di_fl_fss_basic_list_content_write_
 
 #ifdef __cplusplus
 } // extern "C"
index baa2b324ec84a22746444b43eaf1270d66c6c756..6533484902832b4052eb1a6efbf7b6582108f030 100644 (file)
@@ -958,8 +958,8 @@ extern "C" {
   }
 #endif // _di_fl_fss_embedded_list_content_read_
 
-#ifndef _di_fl_fss_embedded_list_object_write_string_
-  f_status_t fl_fss_embedded_list_object_write_string(const f_string_static_t object, const uint8_t complete, f_state_t state, f_string_range_t *range, f_string_dynamic_t *destination) {
+#ifndef _di_fl_fss_embedded_list_object_write_
+  f_status_t fl_fss_embedded_list_object_write(const f_string_static_t object, const uint8_t complete, f_state_t state, f_string_range_t *range, f_string_dynamic_t *destination) {
     #ifndef _di_level_1_parameter_checking_
       if (!destination) return F_status_set_error(F_parameter);
     #endif // _di_level_1_parameter_checking_
@@ -1190,10 +1190,10 @@ extern "C" {
 
     return F_none;
   }
-#endif // _di_fl_fss_embedded_list_object_write_string_
+#endif // _di_fl_fss_embedded_list_object_write_
 
-#ifndef _di_fl_fss_embedded_list_content_write_string_
-  f_status_t fl_fss_embedded_list_content_write_string(const f_string_static_t content, const uint8_t complete, const f_string_static_t *prepend, const f_string_ranges_t *ignore, f_state_t state, f_string_range_t *range, f_string_dynamic_t *destination) {
+#ifndef _di_fl_fss_embedded_list_content_write_
+  f_status_t fl_fss_embedded_list_content_write(const f_string_static_t content, const uint8_t complete, const f_string_static_t *prepend, const f_string_ranges_t *ignore, f_state_t state, f_string_range_t *range, f_string_dynamic_t *destination) {
     #ifndef _di_level_1_parameter_checking_
       if (!range) return F_status_set_error(F_parameter);
       if (!destination) return F_status_set_error(F_parameter);
@@ -1466,7 +1466,7 @@ extern "C" {
 
     return F_none;
   }
-#endif // _di_fl_fss_embedded_list_content_write_string_
+#endif // _di_fl_fss_embedded_list_content_write_
 
 #ifdef __cplusplus
 } // extern "C"
index 16c5050ad1154be98a1beda2e9a51344c953a834..b30ab0629c4de95208c3224e8b12a424ff2ab75d 100644 (file)
@@ -195,9 +195,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_utf_buffer_increment().
  */
-#ifndef _di_fl_fss_embedded_list_object_write_string_
-  extern f_status_t fl_fss_embedded_list_object_write_string(const f_string_static_t object, const uint8_t complete, f_state_t state, f_string_range_t *range, f_string_dynamic_t *destination);
-#endif // _di_fl_fss_embedded_list_object_write_string_
+#ifndef _di_fl_fss_embedded_list_object_write_
+  extern f_status_t fl_fss_embedded_list_object_write(const f_string_static_t object, const uint8_t complete, f_state_t state, f_string_range_t *range, f_string_dynamic_t *destination);
+#endif // _di_fl_fss_embedded_list_object_write_
 
 /**
  * Write an fss-0008 content from a given string.
@@ -253,9 +253,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_utf_buffer_increment().
  */
-#ifndef _di_fl_fss_embedded_list_content_write_string_
-  extern f_status_t fl_fss_embedded_list_content_write_string(const f_string_static_t content, const uint8_t complete, const f_string_static_t *prepend, const f_string_ranges_t *ignore, f_state_t state, f_string_range_t *range, f_string_dynamic_t *destination);
-#endif // _di_fl_fss_embedded_list_content_write_string_
+#ifndef _di_fl_fss_embedded_list_content_write_
+  extern f_status_t fl_fss_embedded_list_content_write(const f_string_static_t content, const uint8_t complete, const f_string_static_t *prepend, const f_string_ranges_t *ignore, f_state_t state, f_string_range_t *range, f_string_dynamic_t *destination);
+#endif // _di_fl_fss_embedded_list_content_write_
 
 #ifdef __cplusplus
 } // extern "C"
index d720654be9a4da540b041c13e1605f7c65fc7f9b..bfa61a5ecfdffdccc0d349a66131cf491f63b633 100644 (file)
@@ -145,8 +145,8 @@ extern "C" {
   }
 #endif // _di_fl_fss_extended_content_read_
 
-#ifndef _di_fl_fss_extended_object_write_string_
-f_status_t fl_fss_extended_object_write_string(const f_string_static_t object, const f_fss_quote_t quote, const uint8_t complete, f_state_t state, f_string_range_t *range, f_string_dynamic_t *destination) {
+#ifndef _di_fl_fss_extended_object_write_
+f_status_t fl_fss_extended_object_write(const f_string_static_t object, const f_fss_quote_t quote, const uint8_t complete, f_state_t state, f_string_range_t *range, f_string_dynamic_t *destination) {
     #ifndef _di_level_1_parameter_checking_
       if (!range) return F_status_set_error(F_parameter);
       if (!destination) return F_status_set_error(F_parameter);
@@ -184,10 +184,10 @@ f_status_t fl_fss_extended_object_write_string(const f_string_static_t object, c
 
     return status;
   }
-#endif // _di_fl_fss_extended_object_write_string_
+#endif // _di_fl_fss_extended_object_write_
 
-#ifndef _di_fl_fss_extended_content_write_string_
-  f_status_t fl_fss_extended_content_write_string(const f_string_static_t content, const f_fss_quote_t quote, const uint8_t complete, f_state_t state, f_string_range_t *range, f_string_dynamic_t *destination) {
+#ifndef _di_fl_fss_extended_content_write_
+  f_status_t fl_fss_extended_content_write(const f_string_static_t content, const f_fss_quote_t quote, const uint8_t complete, f_state_t state, f_string_range_t *range, f_string_dynamic_t *destination) {
     #ifndef _di_level_1_parameter_checking_
       if (!range) return F_status_set_error(F_parameter);
       if (!destination) return F_status_set_error(F_parameter);
@@ -236,7 +236,7 @@ f_status_t fl_fss_extended_object_write_string(const f_string_static_t object, c
 
     return status;
   }
-#endif // _di_fl_fss_extended_content_write_string_
+#endif // _di_fl_fss_extended_content_write_
 
 #ifdef __cplusplus
 } // extern "C"
index b589bda4967abf44f33e51501d79f0e711fcac8f..5b4ccd5c31362fc06e831fea9e1a94114e0255fc 100644 (file)
@@ -188,9 +188,9 @@ extern "C" {
  *   Errors (with error bit) from: f_fss_is_space().
  *   Errors (with error bit) from: f_utf_buffer_increment().
  */
-#ifndef _di_fl_fss_extended_object_write_string_
-  extern f_status_t fl_fss_extended_object_write_string(const f_string_static_t object, const f_fss_quote_t quote, const uint8_t complete, f_state_t state, f_string_range_t *range, f_string_dynamic_t *destination);
-#endif // _di_fl_fss_extended_object_write_string_
+#ifndef _di_fl_fss_extended_object_write_
+  extern f_status_t fl_fss_extended_object_write(const f_string_static_t object, const f_fss_quote_t quote, const uint8_t complete, f_state_t state, f_string_range_t *range, f_string_dynamic_t *destination);
+#endif // _di_fl_fss_extended_object_write_
 
 /**
  * Write an fss-0001 content from a given string.
@@ -243,9 +243,9 @@ extern "C" {
  *   Errors (with error bit) from: f_fss_is_space().
  *   Errors (with error bit) from: f_utf_buffer_increment().
  */
-#ifndef _di_fl_fss_extended_content_write_string_
-  extern f_status_t fl_fss_extended_content_write_string(const f_string_static_t content, const f_fss_quote_t quote, const uint8_t complete, f_state_t state, f_string_range_t *range, f_string_dynamic_t *destination);
-#endif // _di_fl_fss_extended_content_write_string_
+#ifndef _di_fl_fss_extended_content_write_
+  extern f_status_t fl_fss_extended_content_write(const f_string_static_t content, const f_fss_quote_t quote, const uint8_t complete, f_state_t state, f_string_range_t *range, f_string_dynamic_t *destination);
+#endif // _di_fl_fss_extended_content_write_
 
 #ifdef __cplusplus
 } // extern "C"
index a486110d53a0721a810e5d70bc0193b1c55e89d3..9834a3092af7077c787c83cbadf5373078b93acd 100644 (file)
@@ -511,8 +511,8 @@ extern "C" {
   }
 #endif // _di_fl_fss_extended_list_content_read_
 
-#ifndef _di_fl_fss_extended_list_object_write_string_
-  f_status_t fl_fss_extended_list_object_write_string(const f_string_static_t object, const uint8_t complete, f_state_t state, f_string_range_t *range, f_string_dynamic_t *destination) {
+#ifndef _di_fl_fss_extended_list_object_write_
+  f_status_t fl_fss_extended_list_object_write(const f_string_static_t object, const uint8_t complete, f_state_t state, f_string_range_t *range, f_string_dynamic_t *destination) {
     #ifndef _di_level_1_parameter_checking_
       if (!destination) return F_status_set_error(F_parameter);
     #endif // _di_level_1_parameter_checking_
@@ -742,10 +742,10 @@ extern "C" {
 
     return F_none;
   }
-#endif // _di_fl_fss_extended_list_object_write_string_
+#endif // _di_fl_fss_extended_list_object_write_
 
-#ifndef _di_fl_fss_extended_list_content_write_string_
-  f_status_t fl_fss_extended_list_content_write_string(const f_string_static_t content, const uint8_t complete, const f_string_static_t *prepend, const f_string_ranges_t *ignore, f_state_t state, f_string_range_t *range, f_string_dynamic_t *destination) {
+#ifndef _di_fl_fss_extended_list_content_write_
+  f_status_t fl_fss_extended_list_content_write(const f_string_static_t content, const uint8_t complete, const f_string_static_t *prepend, const f_string_ranges_t *ignore, f_state_t state, f_string_range_t *range, f_string_dynamic_t *destination) {
     #ifndef _di_level_1_parameter_checking_
       if (!range) return F_status_set_error(F_parameter);
       if (!destination) return F_status_set_error(F_parameter);
@@ -1017,7 +1017,7 @@ extern "C" {
 
     return F_none;
   }
-#endif // _di_fl_fss_extended_list_content_write_string_
+#endif // _di_fl_fss_extended_list_content_write_
 
 #ifdef __cplusplus
 } // extern "C"
index c2cbfc8b54fcc690e96d70188ac8d4dcf2e5292f..e25e0122b0af71384331e87f474275bf2187e179 100644 (file)
@@ -193,9 +193,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_utf_buffer_increment().
  */
-#ifndef _di_fl_fss_extended_list_object_write_string_
-  extern f_status_t fl_fss_extended_list_object_write_string(const f_string_static_t object, const uint8_t complete, f_state_t state, f_string_range_t *range, f_string_dynamic_t *destination);
-#endif // _di_fl_fss_extended_list_object_write_string_
+#ifndef _di_fl_fss_extended_list_object_write_
+  extern f_status_t fl_fss_extended_list_object_write(const f_string_static_t object, const uint8_t complete, f_state_t state, f_string_range_t *range, f_string_dynamic_t *destination);
+#endif // _di_fl_fss_extended_list_object_write_
 
 /**
  * Write an fss-0003 content from a given string.
@@ -251,9 +251,9 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_utf_buffer_increment().
  */
-#ifndef _di_fl_fss_extended_list_content_write_string_
-  extern f_status_t fl_fss_extended_list_content_write_string(const f_string_static_t content, const uint8_t complete, const f_string_static_t *prepend, const f_string_ranges_t *ignore, f_state_t state, f_string_range_t *range, f_string_dynamic_t *destination);
-#endif // _di_fl_fss_extended_list_content_write_string_
+#ifndef _di_fl_fss_extended_list_content_write_
+  extern f_status_t fl_fss_extended_list_content_write(const f_string_static_t content, const uint8_t complete, const f_string_static_t *prepend, const f_string_ranges_t *ignore, f_state_t state, f_string_range_t *range, f_string_dynamic_t *destination);
+#endif // _di_fl_fss_extended_list_content_write_
 
 #ifdef __cplusplus
 } // extern "C"
index 8adf3ac2ef15cee0c862f7155ab16e0cf318088c..830bd500660675c7eb13e36112ca0ab5f048855b 100644 (file)
@@ -6,7 +6,7 @@
 extern "C" {
 #endif
 
-#if !defined(_di_fl_fss_basic_object_write_string_) || !defined(_di_fl_fss_extended_object_write_string_)
+#if !defined(_di_fl_fss_basic_object_write_) || !defined(_di_fl_fss_extended_object_write_)
   f_status_t private_fl_fss_basic_write_object_trim(const f_fss_quote_t quote, const f_array_length_t used_start, f_state_t state, f_string_dynamic_t *destination) {
 
     f_status_t status = F_none;
@@ -156,9 +156,9 @@ extern "C" {
 
     return F_none;
   }
-#endif // !defined(_di_fl_fss_basic_object_write_string_) || !defined(_di_fl_fss_extended_object_write_string_)
+#endif // !defined(_di_fl_fss_basic_object_write_) || !defined(_di_fl_fss_extended_object_write_)
 
-#if !defined(_di_fl_fss_basic_list_content_write_string_) || !defined(_di_fl_fss_extended_list_content_write_string_) || !defined(_di_fl_fss_embedded_list_content_write_string_)
+#if !defined(_di_fl_fss_basic_list_content_write_) || !defined(_di_fl_fss_extended_list_content_write_) || !defined(_di_fl_fss_embedded_list_content_write_)
   f_status_t private_fl_fss_basic_list_write_add_until_end(const f_string_static_t buffer, f_state_t state, f_string_range_t *range, f_string_dynamic_t *destination) {
 
     f_status_t status = F_none;
@@ -184,9 +184,9 @@ extern "C" {
 
     return status;
   }
-#endif // !defined(_di_fl_fss_basic_list_content_write_string_) || !defined(_di_fl_fss_extended_list_content_write_string_) || !defined(_di_fl_fss_embedded_list_content_write_string_)
+#endif // !defined(_di_fl_fss_basic_list_content_write_) || !defined(_di_fl_fss_extended_list_content_write_) || !defined(_di_fl_fss_embedded_list_content_write_)
 
-#if !defined(_di_fl_fss_basic_list_object_write_string_) || !defined(_di_fl_fss_extended_list_object_write_string_)
+#if !defined(_di_fl_fss_basic_list_object_write_) || !defined(_di_fl_fss_extended_list_object_write_)
   f_status_t private_fl_fss_basic_list_write_object_trim(const f_array_length_t used_start, f_state_t state, f_string_dynamic_t *destination) {
 
     f_status_t status = F_none;
@@ -274,7 +274,7 @@ extern "C" {
 
     return F_none;
   }
-#endif // !defined(_di_fl_fss_basic_list_object_write_string_) || !defined(_di_fl_fss_extended_list_object_write_string_)
+#endif // !defined(_di_fl_fss_basic_list_object_write_) || !defined(_di_fl_fss_extended_list_object_write_)
 
 #if !defined(_di_fl_fss_basic_object_read_) || !defined(_di_fl_fss_extended_object_read_) || !defined(_di_fl_fss_extended_content_read_)
   f_status_t private_fl_fss_basic_read(const f_string_static_t buffer, const bool object_as, f_state_t state, f_string_range_t *range, f_fss_object_t *found, f_fss_quote_t *quote, f_fss_delimits_t *delimits) {
@@ -845,7 +845,7 @@ extern "C" {
   }
 #endif // !defined(_di_fl_fss_basic_object_read_) || !defined(_di_fl_fss_extended_object_read_)
 
-#if !defined(_di_fl_fss_basic_object_write_string_) || !defined(_di_fl_fss_extended_object_write_string_) || !defined(_di_fl_fss_extended_content_write_string_)
+#if !defined(_di_fl_fss_basic_object_write_) || !defined(_di_fl_fss_extended_object_write_) || !defined(_di_fl_fss_extended_content_write_)
   f_status_t private_fl_fss_basic_write(const bool object_as, const f_string_static_t object, const f_fss_quote_t quote, f_state_t state, f_string_range_t *range, f_string_dynamic_t *destination) {
 
     f_status_t status = f_fss_skip_past_space(object, range);
@@ -1218,7 +1218,7 @@ extern "C" {
 
     return F_none_eos;
   }
-#endif // !defined(_di_fl_fss_basic_object_write_string_) || !defined(_di_fl_fss_extended_object_write_string_) || !defined(_di_fl_fss_extended_content_write_string_)
+#endif // !defined(_di_fl_fss_basic_object_write_) || !defined(_di_fl_fss_extended_object_write_) || !defined(_di_fl_fss_extended_content_write_)
 
 #ifdef __cplusplus
 } // extern "C"
index b94e7906d0f13cfacf36e20a3bedd2523996e846..9ea28d8d5bd8517fea778a7618f72b47cdf10660 100644 (file)
@@ -42,12 +42,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_fss_is_space().
  *
- * @see fl_fss_basic_object_write_string()
- * @see fl_fss_extended_object_write_string()
+ * @see fl_fss_basic_object_write()
+ * @see fl_fss_extended_object_write()
  */
-#if !defined(_di_fl_fss_basic_object_write_string_) || !defined(_di_fl_fss_extended_object_write_string_)
+#if !defined(_di_fl_fss_basic_object_write_) || !defined(_di_fl_fss_extended_object_write_)
   extern f_status_t private_fl_fss_basic_write_object_trim(const f_fss_quote_t quote, const f_array_length_t used_start, f_state_t state, f_string_dynamic_t *destination) F_attribute_visibility_internal_d;
-#endif // !defined(_di_fl_fss_basic_object_write_string_) || !defined(_di_fl_fss_extended_object_write_string_)
+#endif // !defined(_di_fl_fss_basic_object_write_) || !defined(_di_fl_fss_extended_object_write_)
 
 /**
  * Add all bytes to destination until stop point, buffer end, or EOL.
@@ -75,14 +75,14 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_string_dynamic_increase().
  *
- * @see fl_fss_basic_list_content_write_string()
- * @see fl_fss_embedded_list_content_write_string()
- * @see fl_fss_extended_list_content_write_string()
+ * @see fl_fss_basic_list_content_write()
+ * @see fl_fss_embedded_list_content_write()
+ * @see fl_fss_extended_list_content_write()
  * @see f_string_dynamic_increase()
  */
-#if !defined(_di_fl_fss_basic_list_content_write_string_) || !defined(_di_fl_fss_extended_list_content_write_string_) || !defined(_di_fl_fss_embedded_list_content_write_string_)
+#if !defined(_di_fl_fss_basic_list_content_write_) || !defined(_di_fl_fss_extended_list_content_write_) || !defined(_di_fl_fss_embedded_list_content_write_)
   extern f_status_t private_fl_fss_basic_list_write_add_until_end(const f_string_static_t buffer, f_state_t state, f_string_range_t *range, f_string_dynamic_t *destination) F_attribute_visibility_internal_d;
-#endif // !defined(_di_fl_fss_basic_list_content_write_string_) || !defined(_di_fl_fss_extended_list_content_write_string_) || !defined(_di_fl_fss_embedded_list_content_write_string_)
+#endif // !defined(_di_fl_fss_basic_list_content_write_) || !defined(_di_fl_fss_extended_list_content_write_) || !defined(_di_fl_fss_embedded_list_content_write_)
 
 /**
  * Trim a given object used by the basic list and extended list object write functions.
@@ -108,12 +108,12 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_fss_is_space().
  *
- * @see fl_fss_basic_list_object_write_string()
- * @see fl_fss_extended_list_object_write_string()
+ * @see fl_fss_basic_list_object_write()
+ * @see fl_fss_extended_list_object_write()
  */
-#if !defined(_di_fl_fss_basic_list_object_write_string_) || !defined(_di_fl_fss_extended_list_object_write_string_)
+#if !defined(_di_fl_fss_basic_list_object_write_) || !defined(_di_fl_fss_extended_list_object_write_)
   extern f_status_t private_fl_fss_basic_list_write_object_trim(const f_array_length_t used_start, f_state_t state, f_string_dynamic_t *destination) F_attribute_visibility_internal_d;
-#endif // !defined(_di_fl_fss_basic_list_object_write_string_) || !defined(_di_fl_fss_extended_list_object_write_string_)
+#endif // !defined(_di_fl_fss_basic_list_object_write_) || !defined(_di_fl_fss_extended_list_object_write_)
 
 /**
  * Private implementation of fl_fss_basic_object_read().
@@ -186,7 +186,7 @@ extern "C" {
 #endif // !defined(_di_fl_fss_basic_object_read_) || !defined(_di_fl_fss_extended_object_read_) || !defined(_di_fl_fss_extended_content_read_)
 
 /**
- * Private implementation of fl_fss_basic_object_write_string().
+ * Private implementation of fl_fss_basic_object_write().
  *
  * Intended to be shared to each of the different implementation variations.
  *
@@ -234,13 +234,13 @@ extern "C" {
  *
  *   Errors (with error bit) from: f_utf_buffer_increment().
  *
- * @see fl_fss_basic_object_write_string()
- * @see fl_fss_extended_object_write_string()
- * @see fl_fss_extended_content_write_string()
+ * @see fl_fss_basic_object_write()
+ * @see fl_fss_extended_object_write()
+ * @see fl_fss_extended_content_write()
  */
-#if !defined(fl_fss_basic_object_write_string) || !defined(fl_fss_extended_object_write_string) || !defined(_di_fl_fss_extended_content_write_string_)
+#if !defined(fl_fss_basic_object_write) || !defined(fl_fss_extended_object_write) || !defined(_di_fl_fss_extended_content_write_)
   extern f_status_t private_fl_fss_basic_write(const bool object_as, const f_string_static_t object, const f_fss_quote_t quoted, f_state_t state, f_string_range_t *range, f_string_dynamic_t *destination) F_attribute_visibility_internal_d;
-#endif // !defined(fl_fss_basic_object_write_string) || !defined(fl_fss_extended_object_write_string) || !defined(_di_fl_fss_extended_content_write_string_)
+#endif // !defined(fl_fss_basic_object_write) || !defined(fl_fss_extended_object_write) || !defined(_di_fl_fss_extended_content_write_)
 
 #ifdef __cplusplus
 } // extern "C"
index 5fa5d568f3c4ec1a769503c21c8ea1b9819d4fb3..09f4f3b4d1afa38abc0e95688b6de49efb07e48d 100644 (file)
@@ -162,7 +162,7 @@ extern "C" {
     f_status_t status = 0;
     f_string_range_t range = macro_f_string_range_t_initialize(object.used);
 
-    status = fl_fss_basic_object_write_string(object, quote, f_fss_complete_full, state, &range, destination);
+    status = fl_fss_basic_object_write(object, quote, f_fss_complete_full, state, &range, destination);
 
     if (F_status_is_error(status) || status == F_data_not_stop || status == F_data_not_eos) {
       return status;
@@ -173,7 +173,7 @@ extern "C" {
         range.start = 0;
         range.stop = content.used - 1;
 
-        status = fl_fss_basic_content_write_string(content, f_fss_complete_full, state, &range, destination);
+        status = fl_fss_basic_content_write(content, f_fss_complete_full, state, &range, destination);
         if (F_status_is_error(status)) return status;
       }
       else {
index bd4553b0d5194b56d4b1cbae1389e921cf264d57..1916801a0a9da2c6af03953c9c84ea125581578e 100644 (file)
@@ -116,8 +116,8 @@ extern "C" {
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_utf (with error bit) is returned on failure to read/process a UTF-8 character.
  *
- *   Errors (with error bit) from: fl_fss_basic_content_write_string().
- *   Errors (with error bit) from: fl_fss_basic_object_write_string().
+ *   Errors (with error bit) from: fl_fss_basic_content_write().
+ *   Errors (with error bit) from: fl_fss_basic_object_write().
  *   Errors (with error bit) from: f_string_dynamic_increase_by().
  */
 #ifndef _di_fll_fss_basic_write_string_
index a6b8af3d35602d560b2a20ed9ee81010ec90e750..4351da7fa22389ebcc8c42bd878e400367ddc485 100644 (file)
@@ -136,7 +136,7 @@ extern "C" {
     f_status_t status = 0;
     f_string_range_t range = macro_f_string_range_t_initialize(object.used);
 
-    status = fl_fss_basic_list_object_write_string(object, f_fss_complete_full, state, &range, destination);
+    status = fl_fss_basic_list_object_write(object, f_fss_complete_full, state, &range, destination);
 
     if (F_status_is_error(status) || status == F_data_not_stop || status == F_data_not_eos) {
       return status;
@@ -152,7 +152,7 @@ extern "C" {
         range.stop = 0;
       }
 
-      status = fl_fss_basic_list_content_write_string(content, f_fss_complete_full, content_prepend, state, &range, destination);
+      status = fl_fss_basic_list_content_write(content, f_fss_complete_full, content_prepend, state, &range, destination);
     }
 
     return status;
index 1cb44b3866fd710ce7b37140dfbe8dffdd8246ea..d76e0a2dd1c0f93df669edf2b48a97930de9591c 100644 (file)
@@ -115,8 +115,8 @@ extern "C" {
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_utf (with error bit) is returned on failure to read/process a UTF-8 character.
  *
- *   Errors (with error bit) from: fl_fss_basic_list_content_write_string().
- *   Errors (with error bit) from: fl_fss_basic_list_object_write_string().
+ *   Errors (with error bit) from: fl_fss_basic_list_content_write().
+ *   Errors (with error bit) from: fl_fss_basic_list_object_write().
  *   Errors (with error bit) from: f_string_dynamic_increase_by().
  */
 #ifndef _di_fll_fss_basic_list_write_string_
index e5922ec822bd64bb262e716a4413ca901712e80f..0d709bb581c6c09c4ef3d36808fa6f5bca0638df 100644 (file)
@@ -134,7 +134,7 @@ extern "C" {
     f_status_t status = 0;
     f_string_range_t range = macro_f_string_range_t_initialize(object.used);
 
-    status = fl_fss_embedded_list_object_write_string(object, f_fss_complete_full, state, &range, destination);
+    status = fl_fss_embedded_list_object_write(object, f_fss_complete_full, state, &range, destination);
 
     if (F_status_is_error(status) || status == F_data_not_stop || status == F_data_not_eos) {
       return status;
@@ -150,7 +150,7 @@ extern "C" {
         range.stop = 0;
       }
 
-      status = fl_fss_embedded_list_content_write_string(content, f_fss_complete_full, content_prepend, ignore, state, &range, destination);
+      status = fl_fss_embedded_list_content_write(content, f_fss_complete_full, content_prepend, ignore, state, &range, destination);
     }
 
     return status;
index 5b53b3a7084f01fff2a142f27b28a041c8445e89..a7b542a73cedb7ba83a48df1df03c674d3645f2a 100644 (file)
@@ -124,8 +124,8 @@ extern "C" {
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_utf (with error bit) is returned on failure to read/process a UTF-8 character.
  *
- *   Errors (with error bit) from: fl_fss_embedded_list_content_write_string().
- *   Errors (with error bit) from: fl_fss_embedded_list_object_write_string().
+ *   Errors (with error bit) from: fl_fss_embedded_list_content_write().
+ *   Errors (with error bit) from: fl_fss_embedded_list_object_write().
  *   Errors (with error bit) from: f_string_dynamic_increase_by().
  */
 #ifndef _di_fll_fss_embedded_list_write_string_
index 69ed891211c77a84748f7d9978c483de50c8ecc4..d3c628d54f1455221c5416f6a116314c16fdb37b 100644 (file)
@@ -201,7 +201,7 @@ extern "C" {
     f_status_t status = 0;
     f_string_range_t range = macro_f_string_range_t_initialize(object.used);
 
-    status = fl_fss_extended_object_write_string(object, quote, f_fss_complete_full, state, &range, destination);
+    status = fl_fss_extended_object_write(object, quote, f_fss_complete_full, state, &range, destination);
 
     if (F_status_is_error(status) || status == F_data_not_stop || status == F_data_not_eos) {
       return status;
@@ -225,7 +225,7 @@ extern "C" {
           range.stop = 0;
         }
 
-        status = fl_fss_extended_content_write_string(contents.array[i], quote, complete, state, &range, destination);
+        status = fl_fss_extended_content_write(contents.array[i], quote, complete, state, &range, destination);
         if (F_status_is_error(status)) return status;
       } // for
     }
index 9a592e9ec984f09726a541c97b74e0d85681aae1..b19708b339a221ff15119e6fe29f3ebb5dc1ea3d 100644 (file)
@@ -117,8 +117,8 @@ extern "C" {
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_utf (with error bit) is returned on failure to read/process a UTF-8 character.
  *
- *   Errors (with error bit) from: fl_fss_extended_content_write_string().
- *   Errors (with error bit) from: fl_fss_extended_object_write_string().
+ *   Errors (with error bit) from: fl_fss_extended_content_write().
+ *   Errors (with error bit) from: fl_fss_extended_object_write().
  *   Errors (with error bit) from: f_string_dynamic_increase_by().
  */
 #ifndef _di_fll_fss_extended_write_string_
index abb13c5249324c140478adc2378ed55c849ec803..d439127d17162e718a462692177a800db4e6a9fb 100644 (file)
@@ -136,7 +136,7 @@ extern "C" {
     f_status_t status = 0;
     f_string_range_t range = macro_f_string_range_t_initialize(object.used);
 
-    status = fl_fss_extended_list_object_write_string(object, f_fss_complete_full, state, &range, destination);
+    status = fl_fss_extended_list_object_write(object, f_fss_complete_full, state, &range, destination);
 
     if (F_status_is_error(status) || status == F_data_not_stop || status == F_data_not_eos) {
       return status;
@@ -152,7 +152,7 @@ extern "C" {
         range.stop = 0;
       }
 
-      status = fl_fss_extended_list_content_write_string(content, f_fss_complete_full, content_prepend, ignore, state, &range, destination);
+      status = fl_fss_extended_list_content_write(content, f_fss_complete_full, content_prepend, ignore, state, &range, destination);
     }
 
     return status;
index 53f325d4a9decead5471748d45cb5a676e483bb6..1bc7fc83e5f79c4efd056af35ecf80105ad9a0bb 100644 (file)
@@ -128,8 +128,8 @@ extern "C" {
  *   F_parameter (with error bit) if a parameter is invalid.
  *   F_utf (with error bit) is returned on failure to read/process a UTF-8 character.
  *
- *   Errors (with error bit) from: fl_fss_extended_list_content_write_string().
- *   Errors (with error bit) from: fl_fss_extended_list_object_write_string().
+ *   Errors (with error bit) from: fl_fss_extended_list_content_write().
+ *   Errors (with error bit) from: fl_fss_extended_list_object_write().
  *   Errors (with error bit) from: f_string_dynamic_increase_by().
  */
 #ifndef _di_fll_fss_extended_list_write_string_
index 213ce23b85089801233bc399728e92cc55106f48..a27c2652646b15d737f593a15c55f4d78ca9fb16 100644 (file)
@@ -89,7 +89,7 @@ extern "C" {
         }
       }
 
-      status = fl_fss_basic_list_object_write_string(*object, complete, state, &range, buffer);
+      status = fl_fss_basic_list_object_write(*object, complete, state, &range, buffer);
 
       if (F_status_set_fine(status) == F_none_eol) {
         fss_basic_list_write_error_parameter_unsupported_eol_print(main);
@@ -98,7 +98,7 @@ extern "C" {
       }
 
       if (F_status_is_error(status)) {
-        fll_error_print(main->error, F_status_set_fine(status), "fl_fss_basic_list_object_write_string", F_true);
+        fll_error_print(main->error, F_status_set_fine(status), "fl_fss_basic_list_object_write", F_true);
 
         return status;
       }
@@ -108,10 +108,10 @@ extern "C" {
       range.start = 0;
       range.stop = content->used - 1;
 
-      status = fl_fss_basic_list_content_write_string(*content, object ? f_fss_complete_full : f_fss_complete_none, &main->prepend, state, &range, buffer);
+      status = fl_fss_basic_list_content_write(*content, object ? f_fss_complete_full : f_fss_complete_none, &main->prepend, state, &range, buffer);
 
       if (F_status_is_error(status)) {
-        fll_error_print(main->error, F_status_set_fine(status), "fl_fss_basic_list_content_write_string", F_true);
+        fll_error_print(main->error, F_status_set_fine(status), "fl_fss_basic_list_content_write", F_true);
 
         return status;
       }
index 98a0afe069ed41aeff23aee9d50b661e4c10c268..33b2f8758da73dfde9dcc2826af4230f97cf901c 100644 (file)
@@ -89,7 +89,7 @@ extern "C" {
         }
       }
 
-      status = fl_fss_basic_object_write_string(*object, quote, complete, state, &range, buffer);
+      status = fl_fss_basic_object_write(*object, quote, complete, state, &range, buffer);
 
       if (F_status_set_fine(status) == F_none_eol) {
         fss_basic_write_error_parameter_unsupported_eol_print(main);
@@ -98,7 +98,7 @@ extern "C" {
       }
 
       if (F_status_is_error(status)) {
-        fll_error_print(main->error, F_status_set_fine(status), "fl_fss_basic_object_write_string", F_true);
+        fll_error_print(main->error, F_status_set_fine(status), "fl_fss_basic_object_write", F_true);
 
         return status;
       }
@@ -114,7 +114,7 @@ extern "C" {
         range.stop = 0;
       }
 
-      status = fl_fss_basic_content_write_string(*content, object ? f_fss_complete_full : f_fss_complete_none, state, &range, buffer);
+      status = fl_fss_basic_content_write(*content, object ? f_fss_complete_full : f_fss_complete_none, state, &range, buffer);
 
       if (F_status_set_fine(status) == F_none_eol) {
         fss_basic_write_error_parameter_unsupported_eol_print(main);
@@ -123,7 +123,7 @@ extern "C" {
       }
 
       if (F_status_is_error(status)) {
-        fll_error_print(main->error, F_status_set_fine(status), "fl_fss_basic_content_write_string", F_true);
+        fll_error_print(main->error, F_status_set_fine(status), "fl_fss_basic_content_write", F_true);
 
         return status;
       }
index a01f26589da4543e153c8dc62c9c1281d18fc385..1384aee4afe73fd9b61001d7cbd7182e6e67c775 100644 (file)
@@ -89,7 +89,7 @@ extern "C" {
         }
       }
 
-      status = fl_fss_embedded_list_object_write_string(*object, complete, state, &range, buffer);
+      status = fl_fss_embedded_list_object_write(*object, complete, state, &range, buffer);
 
       if (F_status_set_fine(status) == F_none_eol) {
         fss_embedded_list_write_error_parameter_unsupported_eol_print(main);
@@ -98,7 +98,7 @@ extern "C" {
       }
 
       if (F_status_is_error(status)) {
-        fll_error_print(main->error, F_status_set_fine(status), "fl_fss_embedded_list_object_write_string", F_true);
+        fll_error_print(main->error, F_status_set_fine(status), "fl_fss_embedded_list_object_write", F_true);
 
         return status;
       }
@@ -108,10 +108,10 @@ extern "C" {
       range.start = 0;
       range.stop = content->used - 1;
 
-      status = fl_fss_embedded_list_content_write_string(*content, object ? f_fss_complete_full : f_fss_complete_none, &main->prepend, ignore, state, &range, buffer);
+      status = fl_fss_embedded_list_content_write(*content, object ? f_fss_complete_full : f_fss_complete_none, &main->prepend, ignore, state, &range, buffer);
 
       if (F_status_is_error(status)) {
-        fll_error_print(main->error, F_status_set_fine(status), "fl_fss_embedded_list_content_write_string", F_true);
+        fll_error_print(main->error, F_status_set_fine(status), "fl_fss_embedded_list_content_write", F_true);
 
         return status;
       }
index a00b35e1d7ac1ec2f4faa1dce82d93237f554b87..c7339e90d95dfe1559c027898f1b30301b693834 100644 (file)
@@ -89,7 +89,7 @@ extern "C" {
         }
       }
 
-      status = fl_fss_extended_list_object_write_string(*object, complete, state, &range, buffer);
+      status = fl_fss_extended_list_object_write(*object, complete, state, &range, buffer);
 
       if (F_status_set_fine(status) == F_none_eol) {
         fss_extended_list_write_error_parameter_unsupported_eol_print(main);
@@ -98,7 +98,7 @@ extern "C" {
       }
 
       if (F_status_is_error(status)) {
-        fll_error_print(main->error, F_status_set_fine(status), "fl_fss_extended_list_object_write_string", F_true);
+        fll_error_print(main->error, F_status_set_fine(status), "fl_fss_extended_list_object_write", F_true);
 
         return status;
       }
@@ -108,10 +108,10 @@ extern "C" {
       range.start = 0;
       range.stop = content->used - 1;
 
-      status = fl_fss_extended_list_content_write_string(*content, object ? f_fss_complete_full : f_fss_complete_none, &main->prepend, ignore, state, &range, buffer);
+      status = fl_fss_extended_list_content_write(*content, object ? f_fss_complete_full : f_fss_complete_none, &main->prepend, ignore, state, &range, buffer);
 
       if (F_status_is_error(status)) {
-        fll_error_print(main->error, F_status_set_fine(status), "fl_fss_extended_list_content_write_string", F_true);
+        fll_error_print(main->error, F_status_set_fine(status), "fl_fss_extended_list_content_write", F_true);
 
         return status;
       }
index 3f990fb06f7213db81840363c4f266885457ca07..ce559489402d29218829dfc524f3b4fe4ec0b1d2 100644 (file)
@@ -89,7 +89,7 @@ extern "C" {
         }
       }
 
-      status = fl_fss_extended_object_write_string(*object, quote, complete, state, &range, buffer);
+      status = fl_fss_extended_object_write(*object, quote, complete, state, &range, buffer);
 
       if (F_status_set_fine(status) == F_none_eol) {
         fss_extended_write_error_parameter_unsupported_eol_print(main);
@@ -98,7 +98,7 @@ extern "C" {
       }
 
       if (F_status_is_error(status)) {
-        fll_error_print(main->error, F_status_set_fine(status), "fl_fss_extended_object_write_string", F_true);
+        fll_error_print(main->error, F_status_set_fine(status), "fl_fss_extended_object_write", F_true);
 
         return F_status_set_error(status);
       }
@@ -117,7 +117,7 @@ extern "C" {
             range.stop = 0;
           }
 
-          status = fl_fss_extended_content_write_string(contents->array[i], quote, i + 1 < contents->used ? f_fss_complete_next : f_fss_complete_end, state, &range, buffer);
+          status = fl_fss_extended_content_write(contents->array[i], quote, i + 1 < contents->used ? f_fss_complete_next : f_fss_complete_end, state, &range, buffer);
 
           if (F_status_set_fine(status) == F_none_eol) {
             fss_extended_write_error_parameter_unsupported_eol_print(main);
@@ -126,7 +126,7 @@ extern "C" {
           }
 
           if (F_status_is_error(status)) {
-            fll_error_print(main->error, F_status_set_fine(status), "fl_fss_extended_content_write_string", F_true);
+            fll_error_print(main->error, F_status_set_fine(status), "fl_fss_extended_content_write", F_true);
 
             return F_status_set_error(status);
           }