]> Kevux Git Server - fll/commitdiff
Progress: Make some progress towards getting fss_read up and running.
authorKevin Day <kevin@kevux.org>
Fri, 28 Apr 2023 03:00:47 +0000 (22:00 -0500)
committerKevin Day <kevin@kevux.org>
Fri, 28 Apr 2023 03:00:47 +0000 (22:00 -0500)
This mostly focuses on the print help functions.

Fix the incorrectly spelled "aplied".
Fix the help messages in the read man pages.

Add *_format_code_name_* for an upper-case human friendly name.
Add this to the fss_write as well given that the programs follow the "programs as a library" design.

44 files changed:
level_3/fss_basic_list_read/c/common.h
level_3/fss_read/c/basic/common.c
level_3/fss_read/c/basic/common.h
level_3/fss_read/c/basic/print.c
level_3/fss_read/c/basic_list/common.c
level_3/fss_read/c/basic_list/common.h
level_3/fss_read/c/basic_list/print.c
level_3/fss_read/c/embedded_list/common.c
level_3/fss_read/c/embedded_list/common.h
level_3/fss_read/c/embedded_list/print.c
level_3/fss_read/c/extended/common.c
level_3/fss_read/c/extended/common.h
level_3/fss_read/c/extended/print.c
level_3/fss_read/c/extended_list/common.c
level_3/fss_read/c/extended_list/common.h
level_3/fss_read/c/extended_list/print.c
level_3/fss_read/c/main/common.c
level_3/fss_read/c/main/common/enumeration.h
level_3/fss_read/c/main/common/string.c
level_3/fss_read/c/main/common/string.h
level_3/fss_read/c/main/main/print.c
level_3/fss_read/c/main/print/message.c
level_3/fss_read/c/main/print/message.h
level_3/fss_read/c/payload/common.c
level_3/fss_read/c/payload/common.h
level_3/fss_read/c/payload/print.c
level_3/fss_read/data/documentation/man/man1/fss_basic_list_read.1
level_3/fss_read/data/documentation/man/man1/fss_basic_read.1
level_3/fss_read/data/documentation/man/man1/fss_embedded_list_read.1
level_3/fss_read/data/documentation/man/man1/fss_extended_list_read.1
level_3/fss_read/data/documentation/man/man1/fss_extended_read.1
level_3/fss_read/data/documentation/man/man1/fss_payload_read.1
level_3/fss_write/c/basic/common.c
level_3/fss_write/c/basic/common.h
level_3/fss_write/c/basic_list/common.c
level_3/fss_write/c/basic_list/common.h
level_3/fss_write/c/embedded_list/common.c
level_3/fss_write/c/embedded_list/common.h
level_3/fss_write/c/extended/common.c
level_3/fss_write/c/extended/common.h
level_3/fss_write/c/extended_list/common.c
level_3/fss_write/c/extended_list/common.h
level_3/fss_write/c/payload/common.c
level_3/fss_write/c/payload/common.h

index 0c9a6c5bae70be44f7ee31a0a4fcc46b3da7d356..14a7272e936a022b514f65f4a12bedce9237ca75 100644 (file)
@@ -258,7 +258,7 @@ extern "C" {
  * FSS Delimit Parameter strings.
  *
  * fss_basic_list_read_delimit_mode_*:
- *   - all:                    All delimits are to be aplied.
+ *   - all:                    All delimits are to be applied.
  *   - content:                Content are to have delimits applied.
  *   - content_greater:        Content at this number or higher are to have delimits applied.
  *   - content_greater_object: Objects and Content at this number or higher are to have delimits applied.
index 6e6619bb23cfdf541e13439fd45560d09f00efd3..14c4e2ec67cb405659d779870d1323ebc31e9752 100644 (file)
@@ -14,6 +14,7 @@ extern "C" {
   const f_string_static_t fss_read_format_code_long_0000_s = macro_f_string_static_t_initialize_1(FSS_READ_format_code_long_0000_s, 0, FSS_READ_format_code_long_0000_s_length);
   const f_string_static_t fss_read_format_code_human_0000_s = macro_f_string_static_t_initialize_1(FSS_READ_format_code_human_0000_s, 0, FSS_READ_format_code_human_0000_s_length);
   const f_string_static_t fss_read_format_code_machine_0000_s = macro_f_string_static_t_initialize_1(FSS_READ_format_code_machine_0000_s, 0, FSS_READ_format_code_machine_0000_s_length);
+  const f_string_static_t fss_read_format_code_name_0000_s = macro_f_string_static_t_initialize_1(FSS_READ_format_code_name_0000_s, 0, FSS_READ_format_code_name_0000_s_length);
 #endif // _di_fss_read_basic_s_
 
 #ifdef __cplusplus
index 2b0c72a953613aa010ba2731abe0beff577a23f7..b40be92f004620375178863c612d7d7f0c072695 100644 (file)
@@ -29,6 +29,7 @@ extern "C" {
   #define FSS_READ_format_code_long_0000_s    "fss-0000"
   #define FSS_READ_format_code_human_0000_s   "basic"
   #define FSS_READ_format_code_machine_0000_s "basic"
+  #define FSS_READ_format_code_name_0000_s    "Basic"
 
   #define FSS_READ_basic_standard_s_length 16
 
@@ -39,6 +40,7 @@ extern "C" {
   #define FSS_READ_format_code_long_0000_s_length    8
   #define FSS_READ_format_code_human_0000_s_length   5
   #define FSS_READ_format_code_machine_0000_s_length 5
+  #define FSS_READ_format_code_name_0000_s_length    4
 
   extern const f_string_static_t fss_read_basic_standard_s;
 
@@ -49,6 +51,7 @@ extern "C" {
   extern const f_string_static_t fss_read_format_code_long_0000_s;
   extern const f_string_static_t fss_read_format_code_human_0000_s;
   extern const f_string_static_t fss_read_format_code_machine_0000_s;
+  extern const f_string_static_t fss_read_format_code_name_0000_s;
 #endif // _di_fss_read_basic_s_
 
 #ifdef __cplusplus
index a87aac9ef261878959421115a8a2f837ccf3a3e9..d3eee9e1c0a6d70274c67efbc3c8c3cd190c7fa2 100644 (file)
@@ -19,15 +19,11 @@ extern "C" {
 
     fll_program_print_help_usage(print, fss_read_basic_program_name_s, f_string_empty_s);
 
-    fss_read_print_message_help_pipe(print);
-
-    fss_read_print_message_help_end_next(print);
+    fss_read_print_message_help_note_header(print, fss_read_format_code_short_0000_s, fss_read_format_code_name_0000_s);
 
-    fl_print_format("%r  The FSS-0000 (Basic) specification does not support multi-line Content, therefore the parameter '%[%r%r%]'", print->to, f_string_eol_s, print->set->notable, f_console_symbol_long_normal_s, fss_read_long_prepend_s, print->set->notable);
-    fl_print_format(" does nothing.%r%r", print->to, f_string_eol_s, f_string_eol_s);
+    fss_read_print_message_help_pipe(print);
 
-    fl_print_format("  This program does not use the parameter '%[%r%r%]', which therefore does nothing.%r", print->to, print->set->notable, f_console_symbol_long_normal_s, fss_read_long_ignore_s, print->set->notable, f_string_eol_s);
-    fl_print_format("  This parameter requires two values.%r", print->to, f_string_eol_s);
+    fss_read_print_message_help_note(print, F_false);
 
     f_file_stream_flush(print->to);
     f_file_stream_unlock(print->to);
index 6674ef020767e32c53617395d15835786d70a3f1..4f89ff2be94707a910dd7d1951a8d58539c75b2a 100644 (file)
@@ -14,6 +14,7 @@ extern "C" {
   const f_string_static_t fss_read_format_code_long_0002_s = macro_f_string_static_t_initialize_1(FSS_READ_format_code_long_0002_s, 0, FSS_READ_format_code_long_0002_s_length);
   const f_string_static_t fss_read_format_code_human_0002_s = macro_f_string_static_t_initialize_1(FSS_READ_format_code_human_0002_s, 0, FSS_READ_format_code_human_0002_s_length);
   const f_string_static_t fss_read_format_code_machine_0002_s = macro_f_string_static_t_initialize_1(FSS_READ_format_code_machine_0002_s, 0, FSS_READ_format_code_machine_0002_s_length);
+  const f_string_static_t fss_read_format_code_name_0002_s = macro_f_string_static_t_initialize_1(FSS_READ_format_code_name_0002_s, 0, FSS_READ_format_code_name_0002_s_length);
 #endif // _di_fss_read_basic_list_s_
 
 #ifdef __cplusplus
index 78d201f477a2135b2c745ef7509bf2ee49dab6bc..a75e1453c08b419b67f43e44267e016afca0818a 100644 (file)
@@ -29,6 +29,7 @@ extern "C" {
   #define FSS_READ_format_code_long_0002_s    "fss-0002"
   #define FSS_READ_format_code_human_0002_s   "basic list"
   #define FSS_READ_format_code_machine_0002_s "basic_list"
+  #define FSS_READ_format_code_name_0002_s    "Basic List"
 
   #define FSS_READ_basic_list_standard_s_length 21
 
@@ -39,6 +40,7 @@ extern "C" {
   #define FSS_READ_format_code_long_0002_s_length    8
   #define FSS_READ_format_code_human_0002_s_length   10
   #define FSS_READ_format_code_machine_0002_s_length 10
+  #define FSS_READ_format_code_name_0002_s_length    10
 
   extern const f_string_static_t fss_read_basic_list_standard_s;
 
@@ -49,6 +51,7 @@ extern "C" {
   extern const f_string_static_t fss_read_format_code_long_0002_s;
   extern const f_string_static_t fss_read_format_code_human_0002_s;
   extern const f_string_static_t fss_read_format_code_machine_0002_s;
+  extern const f_string_static_t fss_read_format_code_name_0002_s;
 #endif // _di_fss_read_basic_list_s_
 
 #ifdef __cplusplus
index 1f8a0557ee9e36dc65a1cecb440c21526af40c74..66f64e455677f4c2f2272b601e172f4fadba1fe6 100644 (file)
@@ -19,15 +19,11 @@ extern "C" {
 
     fll_program_print_help_usage(print, fss_read_basic_list_program_name_s, f_string_empty_s);
 
-    fss_read_print_message_help_pipe(print);
-
-    fss_read_print_message_help_end_next(print);
+    fss_read_print_message_help_note_header(print, fss_read_format_code_short_0002_s, fss_read_format_code_name_0002_s);
 
-    fl_print_format("%r  The FSS-0002 (Basic List) specification does not support quoted names, therefore the parameters '%[%r%r%]'", print->to, f_string_eol_s, print->set->notable, f_console_symbol_long_normal_s, fss_read_long_single_s, print->set->notable);
-    fl_print_format(" and '%[%r%r%]' do nothing.%r%r", print->to, print->set->notable, f_console_symbol_long_normal_s, fss_read_long_double_s, print->set->notable, f_string_eol_s, f_string_eol_s);
+    fss_read_print_message_help_pipe(print);
 
-    fl_print_format("  This program does not use the parameter '%[%r%r%]', which therefore does nothing.%r", print->to, print->set->notable, f_console_symbol_long_normal_s, fss_read_long_ignore_s, print->set->notable, f_string_eol_s);
-    fl_print_format("  This parameter requires two values.%r", print->to, f_string_eol_s);
+    fss_read_print_message_help_note(print, F_true);
 
     f_file_stream_flush(print->to);
     f_file_stream_unlock(print->to);
index dce430fd3a29c0b9461b722f8365d8c67bb122fe..ee84c797d92e92ddcc98ddf75f2e5dc170aa6aa6 100644 (file)
@@ -14,6 +14,7 @@ extern "C" {
   const f_string_static_t fss_read_format_code_long_0008_s = macro_f_string_static_t_initialize_1(FSS_READ_format_code_long_0008_s, 0, FSS_READ_format_code_long_0008_s_length);
   const f_string_static_t fss_read_format_code_human_0008_s = macro_f_string_static_t_initialize_1(FSS_READ_format_code_human_0008_s, 0, FSS_READ_format_code_human_0008_s_length);
   const f_string_static_t fss_read_format_code_machine_0008_s = macro_f_string_static_t_initialize_1(FSS_READ_format_code_machine_0008_s, 0, FSS_READ_format_code_machine_0008_s_length);
+  const f_string_static_t fss_read_format_code_name_0008_s = macro_f_string_static_t_initialize_1(FSS_READ_format_code_name_0008_s, 0, FSS_READ_format_code_name_0008_s_length);
 #endif // _di_fss_read_embedded_list_s_
 
 #ifdef __cplusplus
index 8f97e8acc93f6ac805d40e94f229728e4f7d5eda..2d600b00055cd03974936839ed003a1474610f0f 100644 (file)
@@ -29,6 +29,7 @@ extern "C" {
   #define FSS_READ_format_code_long_0008_s    "fss-0008"
   #define FSS_READ_format_code_human_0008_s   "embedded list"
   #define FSS_READ_format_code_machine_0008_s "embedded_list"
+  #define FSS_READ_format_code_name_0008_s    "Embedded List"
 
   #define FSS_READ_embedded_list_standard_s_length 24
 
@@ -39,6 +40,7 @@ extern "C" {
   #define FSS_READ_format_code_long_0008_s_length    8
   #define FSS_READ_format_code_human_0008_s_length   13
   #define FSS_READ_format_code_machine_0008_s_length 13
+  #define FSS_READ_format_code_name_0008_s_length    13
 
   extern const f_string_static_t fss_read_embedded_list_standard_s;
 
@@ -49,6 +51,7 @@ extern "C" {
   extern const f_string_static_t fss_read_format_code_long_0008_s;
   extern const f_string_static_t fss_read_format_code_human_0008_s;
   extern const f_string_static_t fss_read_format_code_machine_0008_s;
+  extern const f_string_static_t fss_read_format_code_name_0008_s;
 #endif // _di_fss_read_embedded_list_s_
 
 #ifdef __cplusplus
index a363b41190701d11072e480fce1a2fd096f839ea..bac7ecf7b3f946044ecb894699d1bddbe24f79e6 100644 (file)
@@ -19,18 +19,11 @@ extern "C" {
 
     fll_program_print_help_usage(print, fss_read_embedded_list_program_name_s, f_string_empty_s);
 
-    fss_read_print_message_help_pipe(print);
-
-    fss_read_print_message_help_end_next(print);
+    fss_read_print_message_help_note_header(print, fss_read_format_code_short_0008_s, fss_read_format_code_name_0008_s);
 
-    fl_print_format("%r  The FSS-0008 (Embedded List) specification does not support quoted names, therefore the parameters '%[%r%r%]'", print->to, f_string_eol_s, print->set->notable, f_console_symbol_long_normal_s, fss_read_long_single_s, print->set->notable);
-    fl_print_format(" and '%[%r%r%]' do nothing.%r%r", print->to, print->set->notable, f_console_symbol_long_normal_s, fss_read_long_double_s, print->set->notable, f_string_eol_s, f_string_eol_s);
+    fss_read_print_message_help_pipe(print);
 
-    fl_print_format("  The parameter '%[%r%r%]' designates to not escape any valid nested Object or Content within some Content.%r", print->to, print->set->notable, f_console_symbol_long_normal_s, fss_read_long_ignore_s, print->set->notable, f_string_eol_s);
-    fl_print_format("  This parameter requires two values.%r", print->to, f_string_eol_s);
-    fl_print_format("  This parameter is not used for ignoring anything from the input pipe.%r", print->to, f_string_eol_s);
-    fl_print_format("  This parameter must be specified after a '%[%r%r%]'", print->to, print->set->notable, f_console_symbol_long_normal_s, fss_read_long_content_s, print->set->notable);
-    fl_print_format(" parameter and this applies only to the Content represented by that specific '%[%r%r%]' parameter.%r", print->to, print->set->notable, f_console_symbol_long_normal_s, fss_read_long_content_s, print->set->notable, f_string_eol_s);
+    fss_read_print_message_help_note(print, F_true);
 
     f_file_stream_flush(print->to);
     f_file_stream_unlock(print->to);
index 7b3a453a8100c4ce74cf1049e055211ba7f8295f..b58d1846414e6a37abad6e3fe21eeddba53d7a77 100644 (file)
@@ -14,6 +14,7 @@ extern "C" {
   const f_string_static_t fss_read_format_code_long_0001_s = macro_f_string_static_t_initialize_1(FSS_READ_format_code_long_0001_s, 0, FSS_READ_format_code_long_0001_s_length);
   const f_string_static_t fss_read_format_code_human_0001_s = macro_f_string_static_t_initialize_1(FSS_READ_format_code_human_0001_s, 0, FSS_READ_format_code_human_0001_s_length);
   const f_string_static_t fss_read_format_code_machine_0001_s = macro_f_string_static_t_initialize_1(FSS_READ_format_code_machine_0001_s, 0, FSS_READ_format_code_machine_0001_s_length);
+  const f_string_static_t fss_read_format_code_name_0001_s = macro_f_string_static_t_initialize_1(FSS_READ_format_code_name_0001_s, 0, FSS_READ_format_code_name_0001_s_length);
 #endif // _di_fss_read_extended_s_
 
 #ifdef __cplusplus
index 29a8fef2fbb114e4a224d85ab41865b3b186c884..291816ed607010b6145cce5929f90455acef4f1a 100644 (file)
@@ -29,6 +29,7 @@ extern "C" {
   #define FSS_READ_format_code_long_0001_s    "fss-0001"
   #define FSS_READ_format_code_human_0001_s   "extended"
   #define FSS_READ_format_code_machine_0001_s "extended"
+  #define FSS_READ_format_code_name_0001_s    "Extended"
 
   #define FSS_READ_extended_standard_s_length 19
 
@@ -39,6 +40,7 @@ extern "C" {
   #define FSS_READ_format_code_long_0001_s_length    8
   #define FSS_READ_format_code_human_0001_s_length   8
   #define FSS_READ_format_code_machine_0001_s_length 8
+  #define FSS_READ_format_code_name_0001_s_length    8
 
   extern const f_string_static_t fss_read_extended_standard_s;
 
@@ -49,6 +51,7 @@ extern "C" {
   extern const f_string_static_t fss_read_format_code_long_0001_s;
   extern const f_string_static_t fss_read_format_code_human_0001_s;
   extern const f_string_static_t fss_read_format_code_machine_0001_s;
+  extern const f_string_static_t fss_read_format_code_name_0001_s;
 #endif // _di_fss_read_extended_s_
 
 #ifdef __cplusplus
index 9975144c636a0b9075bdbad2ca29b8476bd4bd99..cc763dd4bf0f148b7e7288788c961954a962a0de 100644 (file)
@@ -19,15 +19,11 @@ extern "C" {
 
     fll_program_print_help_usage(print, fss_read_extended_program_name_s, f_string_empty_s);
 
-    fss_read_print_message_help_pipe(print);
-
-    fss_read_print_message_help_end_next(print);
+    fss_read_print_message_help_note_header(print, fss_read_format_code_short_0001_s, fss_read_format_code_name_0001_s);
 
-    fl_print_format("%r  The FSS-0001 (Extended) specification does not support multi-line Content, therefore the parameter '%[%r%r%]'", print->to, f_string_eol_s, print->set->notable, f_console_symbol_long_normal_s, fss_read_long_prepend_s, print->set->notable);
-    fl_print_format(" does nothing.%r%r", print->to, f_string_eol_s, f_string_eol_s);
+    fss_read_print_message_help_pipe(print);
 
-    fl_print_format("  This program does not use the parameter '%[%r%r%]', which therefore does nothing.%r", print->to, print->set->notable, f_console_symbol_long_normal_s, fss_read_long_ignore_s, print->set->notable, f_string_eol_s);
-    fl_print_format("  This parameter requires two values.%r", print->to, f_string_eol_s);
+    fss_read_print_message_help_note(print, F_false);
 
     f_file_stream_flush(print->to);
     f_file_stream_unlock(print->to);
index d4bc37ef7db9570a83189c2faf6df8a33b5b4f39..3d615663e8f2671ffb272d6a79156e46f72008ba 100644 (file)
@@ -14,6 +14,7 @@ extern "C" {
   const f_string_static_t fss_read_format_code_long_0003_s = macro_f_string_static_t_initialize_1(FSS_READ_format_code_long_0003_s, 0, FSS_READ_format_code_long_0003_s_length);
   const f_string_static_t fss_read_format_code_human_0003_s = macro_f_string_static_t_initialize_1(FSS_READ_format_code_human_0003_s, 0, FSS_READ_format_code_human_0003_s_length);
   const f_string_static_t fss_read_format_code_machine_0003_s = macro_f_string_static_t_initialize_1(FSS_READ_format_code_machine_0003_s, 0, FSS_READ_format_code_machine_0003_s_length);
+  const f_string_static_t fss_read_format_code_name_0003_s = macro_f_string_static_t_initialize_1(FSS_READ_format_code_name_0003_s, 0, FSS_READ_format_code_name_0003_s_length);
 #endif // _di_fss_read_extended_list_s_
 
 #ifdef __cplusplus
index 7663d52ea5ee4e75d8ed9e3a6c7c13cbcae7e85c..bb4eb49c41f1003b82eb6ef162391c7c6114287d 100644 (file)
@@ -29,6 +29,7 @@ extern "C" {
   #define FSS_READ_format_code_long_0003_s    "fss-0003"
   #define FSS_READ_format_code_human_0003_s   "extended list"
   #define FSS_READ_format_code_machine_0003_s "extended_list"
+  #define FSS_READ_format_code_name_0003_s    "Extended List"
 
   #define FSS_READ_extended_list_standard_s_length 24
 
@@ -39,6 +40,7 @@ extern "C" {
   #define FSS_READ_format_code_long_0003_s_length    8
   #define FSS_READ_format_code_human_0003_s_length   13
   #define FSS_READ_format_code_machine_0003_s_length 13
+  #define FSS_READ_format_code_name_0003_s_length    13
 
   extern const f_string_static_t fss_read_extended_list_standard_s;
 
@@ -49,6 +51,7 @@ extern "C" {
   extern const f_string_static_t fss_read_format_code_long_0003_s;
   extern const f_string_static_t fss_read_format_code_human_0003_s;
   extern const f_string_static_t fss_read_format_code_machine_0003_s;
+  extern const f_string_static_t fss_read_format_code_name_0003_s;
 #endif // _di_fss_read_extended_list_s_
 
 #ifdef __cplusplus
index 7170b6e8fac1f881438163b6312ea27303283fef..5652239c54bbff61da58bda550c69bf18cc2011c 100644 (file)
@@ -19,18 +19,11 @@ extern "C" {
 
     fll_program_print_help_usage(print, fss_read_extended_list_program_name_s, f_string_empty_s);
 
-    fss_read_print_message_help_pipe(print);
-
-    fss_read_print_message_help_end_next(print);
+    fss_read_print_message_help_note_header(print, fss_read_format_code_short_0003_s, fss_read_format_code_name_0003_s);
 
-    fl_print_format("%r  The FSS-0003 (Extended List) specification does not support quoted names, therefore the parameters '%[%r%r%]'", print->to, f_string_eol_s, print->set->notable, f_console_symbol_long_normal_s, fss_read_long_single_s, print->set->notable);
-    fl_print_format(" and '%[%r%r%]' do nothing.%r%r", print->to, print->set->notable, f_console_symbol_long_normal_s, fss_read_long_double_s, print->set->notable, f_string_eol_s, f_string_eol_s);
+    fss_read_print_message_help_pipe(print);
 
-    fl_print_format("  The parameter '%[%r%r%]' designates to not escape any valid nested Object or Content within some Content.%r", print->to, print->set->notable, f_console_symbol_long_normal_s, fss_read_long_ignore_s, print->set->notable, f_string_eol_s);
-    fl_print_format("  This parameter requires two values.%r", print->to, f_string_eol_s);
-    fl_print_format("  This parameter is not used for ignoring anything from the input pipe.%r", print->to, f_string_eol_s);
-    fl_print_format("  This parameter must be specified after a '%[%r%r%]'", print->to, print->set->notable, f_console_symbol_long_normal_s, fss_read_long_content_s, print->set->notable);
-    fl_print_format(" parameter and this applies only to the Content represented by that specific '%[%r%r%]' parameter.%r", print->to, print->set->notable, f_console_symbol_long_normal_s, fss_read_long_content_s, print->set->notable, f_string_eol_s);
+    fss_read_print_message_help_note(print, F_true);
 
     f_file_stream_flush(print->to);
     f_file_stream_unlock(print->to);
index f45451fba2d4f657a3d43bec181688fdf5c86565..e4c66e30d87838b69a7e29300c4c019c6a06c7d7 100644 (file)
@@ -116,6 +116,10 @@ extern "C" {
     if (main->program.parameters.array[fss_read_parameter_help_e].result & f_console_result_found_e) return;
     if (main->program.parameters.array[fss_read_parameter_version_e].result & f_console_result_found_e) return;
 
+    if (main->program.parameters.array[fss_read_parameter_strip_invalid_e].result & f_console_result_found_e) {
+      main->setting.flag |= fss_read_main_flag_strip_invalid_e;
+    }
+
     if ((main->program.parameters.array[fss_read_parameter_file_e].result & f_console_result_value_e) && main->program.parameters.array[fss_read_parameter_file_e].values.used) {
       if (main->program.parameters.array[fss_read_parameter_file_e].values.used > 1) {
         main->setting.state.status = F_status_set_error(F_parameter);
index 639c750eebaa18885a25165881428e51a27677e9..8d93568c9590e1f4dc0edc04b5d03f752ed6f246 100644 (file)
@@ -123,6 +123,33 @@ extern "C" {
   }; // enum
 #endif // _di_fss_read_print_flag_e_
 
+/**
+ * FSS Delimit Parameter enumerations.
+ *
+ * fss_read_delimit_mode_*_e:
+ *   - all:                    All delimits are to be applied.
+ *   - content:                Content are to have delimits applied.
+ *   - content_greater:        Content at this number or higher are to have delimits applied.
+ *   - content_greater_object: Objects and Content at this number or higher are to have delimits applied.
+ *   - content_lesser:         Content at this number or lower are to have delimits applied.
+ *   - content_lesser_object:  Objects and Content at this number or lower are to have delimits applied.
+ *   - content_object:         Objects and Content are to have delimits applied
+ *   - object:                 Objects arre to have delimits applied.
+ */
+#ifndef _di_fss_read_delimit_mode_e_
+  enum {
+    fss_read_delimit_mode_none_e = 0,
+    fss_read_delimit_mode_all_e,
+    fss_read_delimit_mode_content_e,
+    fss_read_delimit_mode_content_greater_e,
+    fss_read_delimit_mode_content_greater_object_e,
+    fss_read_delimit_mode_content_lesser_e,
+    fss_read_delimit_mode_content_lesser_object_e,
+    fss_read_delimit_mode_content_object_e,
+    fss_read_delimit_mode_object_e,
+  }; // enum
+#endif // _di_fss_read_delimit_mode_e_
+
 #ifdef __cplusplus
 } // extern "C"
 #endif
index 77e6753bebe3df0f08efd512745eccdb8ad24f54..3c65073bb80129de183a2c6c0799ac1923613b1d 100644 (file)
@@ -23,6 +23,14 @@ extern "C" {
   const f_string_static_t fss_read_string_two_s = macro_f_string_static_t_initialize_1(FSS_READ_string_two_s, 0, FSS_READ_string_two_s_length);
 #endif // _di_fss_read_s_
 
+#ifndef _di_fss_read_delimit_mode_s_
+  const f_string_static_t fss_read_delimit_mode_name_none_s = macro_f_string_static_t_initialize_1(FSS_READ_delimit_mode_name_none_s, 0, FSS_READ_delimit_mode_name_none_s_length);
+  const f_string_static_t fss_read_delimit_mode_name_all_s = macro_f_string_static_t_initialize_1(FSS_READ_delimit_mode_name_all_s, 0, FSS_READ_delimit_mode_name_all_s_length);
+  const f_string_static_t fss_read_delimit_mode_name_object_s = macro_f_string_static_t_initialize_1(FSS_READ_delimit_mode_name_object_s, 0, FSS_READ_delimit_mode_name_object_s_length);
+  const f_string_static_t fss_read_delimit_mode_name_greater_s = macro_f_string_static_t_initialize_1(FSS_READ_delimit_mode_name_greater_s, 0, FSS_READ_delimit_mode_name_greater_s_length);
+  const f_string_static_t fss_read_delimit_mode_name_lesser_s = macro_f_string_static_t_initialize_1(FSS_READ_delimit_mode_name_lesser_s, 0, FSS_READ_delimit_mode_name_lesser_s_length);
+#endif // _di_fss_read_delimit_mode_s_
+
 #ifndef _di_fss_read_parameter_s_
   const f_string_static_t fss_read_short_at_s = macro_f_string_static_t_initialize_1(FSS_READ_short_at_s, 0, FSS_READ_short_at_s_length);
   const f_string_static_t fss_read_short_content_s = macro_f_string_static_t_initialize_1(FSS_READ_short_content_s, 0, FSS_READ_short_content_s_length);
index df0911585ec560cc8efd1b8fb5196023853b29db..08c4dd7e7b7b40e0de31e5d5156da8aa5a5fb135 100644 (file)
@@ -89,7 +89,7 @@ extern "C" {
 #endif // _di_fss_read_pipe_s_
 
 /**
- * A collection of static strings associated with FSS Payload Write.
+ * A collection of static strings associated with FSS Read.
  */
 #ifndef _di_fss_read_s_
   #define FSS_READ_string_two_s "two"
@@ -100,6 +100,39 @@ extern "C" {
 #endif // _di_fss_read_s_
 
 /**
+ * FSS Delimit Parameter strings.
+ *
+ * fss_read_delimit_mode_*:
+ *   - all:                    All delimits are to be aplied.
+ *   - content:                Content are to have delimits applied.
+ *   - content_greater:        Content at this number or higher are to have delimits applied.
+ *   - content_greater_object: Objects and Content at this number or higher are to have delimits applied.
+ *   - content_lesser:         Content at this number or lower are to have delimits applied.
+ *   - content_lesser_object:  Objects and Content at this number or lower are to have delimits applied.
+ *   - content_object:         Objects and Content are to have delimits applied
+ *   - object:                 Objects arre to have delimits applied.
+ */
+#ifndef _di_fss_read_delimit_mode_s_
+  #define FSS_READ_delimit_mode_name_none_s    "none"
+  #define FSS_READ_delimit_mode_name_all_s     "all"
+  #define FSS_READ_delimit_mode_name_object_s  "object"
+  #define FSS_READ_delimit_mode_name_greater_s "+"
+  #define FSS_READ_delimit_mode_name_lesser_s  "-"
+
+  #define FSS_READ_delimit_mode_name_none_s_length    4
+  #define FSS_READ_delimit_mode_name_all_s_length     3
+  #define FSS_READ_delimit_mode_name_object_s_length  6
+  #define FSS_READ_delimit_mode_name_greater_s_length 1
+  #define FSS_READ_delimit_mode_name_lesser_s_length  1
+
+  extern const f_string_static_t fss_read_delimit_mode_name_none_s;
+  extern const f_string_static_t fss_read_delimit_mode_name_all_s;
+  extern const f_string_static_t fss_read_delimit_mode_name_object_s;
+  extern const f_string_static_t fss_read_delimit_mode_name_greater_s;
+  extern const f_string_static_t fss_read_delimit_mode_name_lesser_s;
+#endif // _di_fss_read_delimit_mode_s_
+
+/**
  * The main program parameters.
  */
 #ifndef _di_fss_read_parameter_s_
@@ -150,7 +183,7 @@ extern "C" {
 
   #define FSS_READ_long_at_s_length       2
   #define FSS_READ_long_content_s_length  7
-  #define FSS_READ_long_columns_s_length  8
+  #define FSS_READ_long_columns_s_length  7
   #define FSS_READ_long_delimit_s_length  7
   #define FSS_READ_long_depth_s_length    5
   #define FSS_READ_long_empty_s_length    5
index 111153967fe8e668969db115a1a00c297b99475e..3647488401de83759aad2a1706a866fdac97c2f7 100644 (file)
@@ -42,18 +42,22 @@ extern "C" {
 
     fss_read_print_message_help(print);
 
-    fll_program_print_help_option(print, fss_read_short_as_s, fss_read_long_as_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, "Designate the supported format to write as.");
+    fll_program_print_help_option(print, fss_read_short_as_s, fss_read_long_as_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, "Designate the supported format to read as.");
 
     f_print_dynamic_raw(f_string_eol_s, print->to);
 
     fll_program_print_help_usage(print, fss_read_program_name_s, f_string_empty_s);
 
+    fss_read_print_message_help_note_header(print, f_string_empty_s, f_string_empty_s);
+
     fss_read_print_message_help_pipe(print);
 
-    fss_read_print_message_help_end_next(print);
+    fss_read_print_message_help_note(print, F_false);
 
     f_print_dynamic_raw(f_string_eol_s, print->to);
 
+    // @todo everything below needs to be reviewed and updated as appropriate.
+
     fl_print_format("  The '%[%r%r%]' parameter supports the following standards with the specified possible case-sensitive values:%r", print->to, print->set->notable, f_console_symbol_long_normal_s, fss_read_long_as_s, print->set->notable, f_string_eol_s);
 
     // FSS-0000 (Basic)
index cac0653b236b411b7ad95810e474ee8b8864ae69..6af60321022bf008d90e8b9bb4b12378b6abe0a6 100644 (file)
@@ -13,42 +13,131 @@ extern "C" {
 
     f_print_dynamic_raw(f_string_eol_s, print->to);
 
-    fll_program_print_help_option(print, fss_read_short_backtick_s, fss_read_long_backtick_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, "    Use backticks to quote.");
-    fll_program_print_help_option(print, fss_read_short_content_s, fss_read_long_content_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, "     The Content to write.");
-    fll_program_print_help_option(print, fss_read_short_content_end_s, fss_read_long_content_end_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, " Write the end of Content characters.");
-    fll_program_print_help_option(print, fss_read_short_content_next_s, fss_read_long_content_next_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, "Write the next Content characters (separates multi-Content apart).");
-    fll_program_print_help_option(print, fss_read_short_double_s, fss_read_long_double_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, "      Use double quotes (default).");
-    fll_program_print_help_option(print, fss_read_short_file_s, fss_read_long_file_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, "        Specify a file to send data to.");
-    fll_program_print_help_option(print, fss_read_short_ignore_s, fss_read_long_ignore_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, "      Ignore a given range within a Content.");
-    fll_program_print_help_option(print, fss_read_short_object_s, fss_read_long_object_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, "      The Object to write.");
-    fll_program_print_help_option(print, fss_read_short_object_open_s, fss_read_long_object_open_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, " Write the open Object characters.");
-    fll_program_print_help_option(print, fss_read_short_partial_s, fss_read_long_partial_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, "     Do not write a complete Object and Content set.");
-    fll_program_print_help_option(print, fss_read_short_prepend_s, fss_read_long_prepend_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, "     Prepend the given white space characters to the start of each multi-line Content.");
-    fll_program_print_help_option(print, fss_read_short_single_s, fss_read_long_single_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, "      Use single quotes.");
-    fll_program_print_help_option(print, fss_read_short_trim_s, fss_read_long_trim_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, "        Trim Object names.");
+    fll_program_print_help_option(print, fss_read_short_at_s, fss_read_long_at_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, "      Select Object at this numeric index.");
+    fll_program_print_help_option(print, fss_read_short_content_s, fss_read_long_content_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, " Print the Content (default).");
+    fll_program_print_help_option(print, fss_read_short_columns_s, fss_read_long_columns_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, " Print the total number of columns.");
+    fll_program_print_help_option(print, fss_read_short_delimit_s, fss_read_long_delimit_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, " Designate how to handle applying delimits.");
+    fll_program_print_help_option(print, fss_read_short_depth_s, fss_read_long_depth_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, "   Select Object at this numeric depth.");
+    fll_program_print_help_option(print, fss_read_short_empty_s, fss_read_long_empty_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, "   Include empty Content when processing.");
+    fll_program_print_help_option(print, fss_read_short_line_s, fss_read_long_line_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, "    Print only the Content at the given line.");
+    fll_program_print_help_option(print, fss_read_short_name_s, fss_read_long_name_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, "    Select Object with this name.");
+    fll_program_print_help_option(print, fss_read_short_object_s, fss_read_long_object_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, "  Print the Object.");
+    fll_program_print_help_option(print, fss_read_short_pipe_s, fss_read_long_pipe_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, "    Print using the special pipe format.");
+    fll_program_print_help_option(print, fss_read_short_original_s, fss_read_long_original_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, "Print with the original quotes and escapes.");
+    fll_program_print_help_option(print, fss_read_short_select_s, fss_read_long_select_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, "  Select sub-Content at this index.");
+    fll_program_print_help_option(print, fss_read_short_total_s, fss_read_long_total_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, "   Print the total number of lines.");
+    fll_program_print_help_option(print, fss_read_short_trim_s, fss_read_long_trim_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, "    Trim Object names on select or print.");
   }
 #endif // _di_fss_read_print_message_help_
 
-#ifndef _di_fss_read_print_message_help_end_next_
-  void fss_read_print_message_help_end_next(fl_print_t * const print) {
+#ifndef _di_fss_read_print_message_help_note_header_
+  void fss_read_print_message_help_note_header(fl_print_t * const print, const f_string_static_t number, const f_string_static_t name) {
 
     if (!print) return;
 
-    fl_print_format("  The '%[%r%r%]',", print->to, print->set->notable, f_console_symbol_long_normal_s, fss_read_long_object_open_s, print->set->notable);
-    fl_print_format(" '%[%r%r%]', and", print->to, print->set->notable, f_console_symbol_long_normal_s, fss_read_long_content_next_s, print->set->notable);
-    fl_print_format(" '%[%r%r%]' help facilitate writing the designated data for when using", print->to, print->set->notable, f_console_symbol_long_normal_s, fss_read_long_content_end_s, print->set->notable);
-    fl_print_format(" '%[%r%r%]'.%r", print->to, print->set->notable, f_console_symbol_long_normal_s, fss_read_long_partial_s, print->set->notable, f_string_eol_s);
+    fl_print_format(" %[Notes:%]%r  This program will print the data associated with the given Object and Content based on the FSS", print->to, f_string_eol_s);
 
-    fl_print_format("  These may also be used when there is no '%[%r%r%]' or", print->to, print->set->notable, f_console_symbol_long_normal_s, fss_read_long_object_s, print->set->notable);
-    fl_print_format(" '%[%r%r%]' specified to only print the designated data.%r", print->to, print->set->notable, f_console_symbol_long_normal_s, fss_read_long_content_s, print->set->notable, f_string_eol_s);
+    if (number.used) {
+      fl_print_format("-%Q", print->to, number);
+
+      if (name.used) {
+        fl_print_format(" (%Q)", print->to, name);
+      }
+    }
+
+    fl_print_format(" standard.%r", print->to, f_string_eol_s);
+  }
+#endif // _di_fss_read_print_message_help_note_header_
+
+#ifndef _di_fss_read_print_message_help_note_
+  void fss_read_print_message_help_note(fl_print_t * const print, const uint8_t new_line) {
+
+    if (!print) return;
+
+    f_color_set_context_t * const set = print->set;
+
+    // TODO: this is just copied over and needs to be broken up somehow.
+    fl_print_format("%r  All numeric positions (indexes) start at 0 instead of 1.%r", print->to, f_string_eol_s, f_string_eol_s);
+    fl_print_format("  For example, a file of 17 lines would range from 0 to 16.%r%r", print->to, f_string_eol_s, f_string_eol_s);
+
+    fl_print_format("  When using the %[%r%r%] option, an order of operations is enforced on the parameters.%r", print->to, set->notable, f_console_symbol_long_normal_s, fss_read_long_depth_s, set->notable, f_string_eol_s);
+
+    fl_print_format("  When this order of operations is in effect, parameters to the right of a depth parameter are influenced by that depth parameter:%r", print->to, f_string_eol_s);
+
+    fl_print_format("    %[%r%r%]: An Object index at the specified depth.%r", print->to, set->notable, f_console_symbol_long_normal_s, fss_read_long_at_s, set->notable, f_string_eol_s);
+    fl_print_format("    %[%r%r%]: A new depth within the specified depth, indexed from the root.%r", print->to, set->notable, f_console_symbol_long_normal_s, fss_read_long_depth_s, set->notable, f_string_eol_s);
+    fl_print_format("    %[%r%r%]: An Object name at the specified depth.%r%r", print->to, set->notable, f_console_symbol_long_normal_s, fss_read_long_name_s, set->notable, f_string_eol_s, f_string_eol_s);
+
+    fl_print_format("  The parameter %[%r%r%] must be in numeric order, but values in between may be skipped.%r", print->to, set->notable, f_console_symbol_long_normal_s, fss_read_long_depth_s, set->notable, f_string_eol_s);
+    fl_print_format("    ('-d 0 -a 1 -d 2 -a 2' would specify index 1 at depth 0, any index at depth 1, and index 2 at depth 2.)%r", print->to, f_string_eol_s);
+    fl_print_format("    ('-d 2 -a 1 -d 0 -a 2' would be invalid because depth 2 is before depth 1.)%r%r", print->to, f_string_eol_s, f_string_eol_s);
+
+    fl_print_format("  The parameter %[%r%r%] selects a Content column.%r%r", print->to, set->notable, f_console_symbol_long_normal_s, fss_read_long_select_s, set->notable, f_string_eol_s, f_string_eol_s);
+
+    fl_print_format("  Specify both %[%r%r%]", print->to, set->notable, f_console_symbol_long_normal_s, fss_read_long_object_s, set->notable);
+    fl_print_format(" and the %[%r%r%] parameters to get the total objects.%r%r", print->to, set->notable, f_console_symbol_long_normal_s, fss_read_long_total_s, set->notable, f_string_eol_s, f_string_eol_s);
+
+    fl_print_format("  When both %[%r%r%]", print->to, set->notable, f_console_symbol_long_normal_s, fss_read_long_at_s, set->notable);
+    fl_print_format(" and %[%r%r%] parameters are specified (at the same depth),", print->to, set->notable, f_console_symbol_long_normal_s, fss_read_long_name_s, set->notable);
+    fl_print_format(" the %[%r%r%] parameter value will be treated as a position relative to the specified", print->to, set->notable, f_console_symbol_long_normal_s, fss_read_long_at_s, set->notable);
+    fl_print_format(" %[%r%r%] parameter value.%r%r", print->to, set->notable, f_console_symbol_long_normal_s, fss_read_long_name_s, set->notable, f_string_eol_s, f_string_eol_s);
+
+    fl_print_format("  This program may support parameters, such as %[%r%r%]", print->to, set->notable, f_console_symbol_long_normal_s, fss_read_long_depth_s, set->notable);
+    fl_print_format(" or %[%r%r%], even if not supported by the standard.%r", print->to, set->notable, f_console_symbol_long_normal_s, fss_read_long_select_s, set->notable, f_string_eol_s);
+    fl_print_format("  This is done to help ensure consistency for scripting.%r%r", print->to, f_string_eol_s, f_string_eol_s);
+
+    fl_print_format("  For parameters like %[%r%r%],", print->to, set->notable, f_console_symbol_long_normal_s, fss_read_long_depth_s, set->notable);
+    fl_print_format(" if the standard doesn't support nested Content, then only a depth of 0 would be valid.%r", print->to, f_string_eol_s);
+
+    fl_print_format("  For parameters like %[%r%r%],", print->to, set->notable, f_console_symbol_long_normal_s, fss_read_long_select_s, set->notable);
+    fl_print_format(" if the standard doesn't support multiple Content groups, then only a select of 0 would be valid.%r%r", print->to, f_string_eol_s, f_string_eol_s);
+
+    fl_print_format("  The parameter %[%r%r%]", print->to, set->notable, f_console_symbol_long_normal_s, fss_read_long_trim_s, set->notable);
+    fl_print_format(" will remove leading and trailing white spaces when selecting objects or when printing objects.%r%r", print->to, f_string_eol_s, f_string_eol_s);
+
+    fl_print_format("  When specifying both the %[%r%r%]", print->to, set->notable, f_console_symbol_long_normal_s, fss_read_long_object_s, set->notable);
+    fl_print_format(" parameter and the %[%r%r%] parameter, the entire Object and Content are printed, including the formatting.%r", print->to, set->notable, f_console_symbol_long_normal_s, fss_read_long_content_s, set->notable, f_string_eol_s);
+    fl_print_format("  Both the Object and Content printed are already escaped.%r", print->to, f_string_eol_s);
+
+    if (new_line == 0x2) {
+      fl_print_format("  Depending on the standard both the Object and Content are separated by either a New Line character '\\n' (U+000A) or a space.%r%r", print->to, f_string_eol_s, f_string_eol_s);
+    }
+    else if (new_line) {
+      fl_print_format("  Both the Object and Content are separated by a New Line character '\\n' (U+000A).%r%r", print->to, f_string_eol_s, f_string_eol_s);
+    }
+    else {
+      fl_print_format("  Both the Object and Content are separated by a space.%r%r", print->to, f_string_eol_s, f_string_eol_s);
+    }
+
+    fl_print_format("  The parameter %[%r%r%] accepts the following:%r", print->to, set->notable, f_console_symbol_long_normal_s, fss_read_long_delimit_s, set->notable, f_string_eol_s);
+    fl_print_format("  - %[%r%]: Do not apply delimits.%r", print->to, set->notable, fss_read_delimit_mode_name_none_s, set->notable, f_string_eol_s);
+    fl_print_format("  - %[%r%]: (default) Apply all delimits.%r", print->to, set->notable, fss_read_delimit_mode_name_all_s, set->notable, f_string_eol_s);
+    fl_print_format("  - %[%r%]: Apply delimits for Objects.%r", print->to, set->notable, fss_read_delimit_mode_name_object_s, set->notable, f_string_eol_s); // @todo this isn't in embedded_list print, confirm/deny if this is intended or not.
+    fl_print_format("  - A number, 0 or greater: apply delimits for Content at the specified depth.%r", print->to, f_string_eol_s);
+    fl_print_format("  - A number, 0 or greater, followed by a %[%r%]: (such as '1+') apply delimits for Content at the specified depth and any greater depth (numerically).%r", print->to, set->notable, fss_read_delimit_mode_name_greater_s, set->notable, f_string_eol_s, f_string_eol_s);
+    fl_print_format("  - A number, 0 or lesser, followed by a %[%r%]: (such as '1-') apply delimits for Content at the specified depth and any lesser depth (numerically).%r%r", print->to, set->notable, fss_read_delimit_mode_name_lesser_s, set->notable, f_string_eol_s, f_string_eol_s);
+
+    fl_print_format("  The %[%r%r%] parameter may be specified multiple times to customize the delimit behavior.%r", print->to, set->notable, f_console_symbol_long_normal_s, fss_read_long_delimit_s, set->notable, f_string_eol_s);
+
+    fl_print_format("  The %[%r%r%]", print->to, set->notable, f_console_symbol_long_normal_s, fss_read_long_delimit_s, set->notable);
+    fl_print_format(" values %[%r%]", print->to, set->notable, fss_read_delimit_mode_name_none_s, set->notable);
+    fl_print_format(" and %[%r%],", print->to, set->notable, fss_read_delimit_mode_name_all_s, set->notable);
+    fl_print_format(" overrule all other delimit values.%r%r", print->to, f_string_eol_s, f_string_eol_s);
+
+    fl_print_format("  The parameters %[%r%r%]", print->to, set->notable, f_console_symbol_long_normal_s, fss_read_long_columns_s, set->notable);
+    fl_print_format(" and %[%r%r%]", print->to, set->notable, f_console_symbol_long_normal_s, fss_read_long_select_s, set->notable);
+    fl_print_format(" refer to a Content column.%r", print->to, f_string_eol_s);
+    fl_print_format("  The word 'column' is being loosely defined to refer to a specific Content.%r", print->to, f_string_eol_s);
+    fl_print_format("  This is not to be confused with a depth.%r", print->to, f_string_eol_s);
   }
-#endif // _di_fss_read_print_message_help_end_next_
+#endif // _di_fss_read_print_message_help_note_
 
 #ifndef _di_fss_read_print_message_help_pipe_
   void fss_read_print_message_help_pipe(fl_print_t * const print) {
 
     if (!print) return;
 
+    // @todo there is a pipe input format but this documentation is for write rather than read, update this as appropriate or remove function entirely.
     fl_print_format("%r  The pipe uses the Backspace character '%[\\b%]' (%[U+0008%]) to designate the start of a Content.%r", print->to, f_string_eol_s, print->set->notable, print->set->notable, print->set->notable, print->set->notable, f_string_eol_s);
     fl_print_format("  The pipe uses the Form Feed character '%[\\f%]' (%[U+000C%]) to designate the end of the last Content.%r", print->to, print->set->notable, print->set->notable, print->set->notable, print->set->notable, f_string_eol_s);
     fl_print_format("  The pipe uses the Vertical Line character '%[\\v%]' (%[U+000B%]) is used to ignore a Content range (use this both before and after the range).%r", print->to, print->set->notable, print->set->notable, print->set->notable, print->set->notable, f_string_eol_s);
index 587e7e095c69e79ad2a07e43dbcb3c2d00ccae80..6dde2e4c901e82c7007c8e81efce65db4d4476a9 100644 (file)
@@ -31,18 +31,40 @@ extern "C" {
 #endif // _di_fss_read_print_message_help_
 
 /**
- * Print standard parts of the help regarding Object End, Content Next, and Content End usage.
+ * Print standard parts of the help regarding the notes header.
  *
  * This is expected to be called as part of the help printing and does not perform any locking.
  *
  * @param print
  *   The output structure to print to.
+ * @param number
+ *   The FSS standard number, such as "0000".
+ * @param name
+ *   The FSS standard name, such as "Basic".
  *
  *   This does not alter print.custom.setting.state.status.
  */
-#ifndef _di_fss_read_print_message_help_end_next_
-  extern void fss_read_print_message_help_end_next(fl_print_t * const print);
-#endif // _di_fss_read_print_message_help_end_next_
+#ifndef _di_fss_read_print_message_help_note_header_
+  extern void fss_read_print_message_help_note_header(fl_print_t * const print, const f_string_static_t number, const f_string_static_t name);
+#endif // _di_fss_read_print_message_help_note_header_
+
+/**
+ * Print standard parts of the help regarding notes.
+ *
+ * This is expected to be called as part of the help printing and does not perform any locking.
+ *
+ * @param print
+ *   The output structure to print to.
+ *
+ *   This does not alter print.custom.setting.state.status.
+ * @param new_line
+ *   If 0x0 (F_false), then print help regarding space separating Object and Content.
+ *   If 0x1 (F_true), then print help regarding new line separating Object and Content.
+ *   If 0x2, then print both separation types (intended for use by the general fss_read program).
+ */
+#ifndef _di_fss_read_print_message_help_note_
+  extern void fss_read_print_message_help_note(fl_print_t * const print, const uint8_t new_line);
+#endif // _di_fss_read_print_message_help_note_
 
 /**
  * Print standard parts of the help regarding pipe usage.
index eafdb0cc4ed047e52aaf7a0b048114b64d2d1e4c..b5fd25d905b1ccd9185f26e961e23314204ab03b 100644 (file)
@@ -16,6 +16,7 @@ extern "C" {
   const f_string_static_t fss_read_format_code_long_000e_s = macro_f_string_static_t_initialize_1(FSS_READ_format_code_long_000e_s, 0, FSS_READ_format_code_long_000e_s_length);
   const f_string_static_t fss_read_format_code_human_000e_s = macro_f_string_static_t_initialize_1(FSS_READ_format_code_human_000e_s, 0, FSS_READ_format_code_human_000e_s_length);
   const f_string_static_t fss_read_format_code_machine_000e_s = macro_f_string_static_t_initialize_1(FSS_READ_format_code_machine_000e_s, 0, FSS_READ_format_code_machine_000e_s_length);
+  const f_string_static_t fss_read_format_code_name_000e_s = macro_f_string_static_t_initialize_1(FSS_READ_format_code_name_000e_s, 0, FSS_READ_format_code_name_000e_s_length);
 #endif // _di_fss_read_payload_s_
 
 #ifdef __cplusplus
index 7b762e845d9a946e04a332eee23558e2d66e9083..bf3fe87251ba51280331f8376a3b22ed44d85408 100644 (file)
@@ -31,6 +31,7 @@ extern "C" {
   #define FSS_READ_format_code_long_000e_s    "fss-000e"
   #define FSS_READ_format_code_human_000e_s   "payload"
   #define FSS_READ_format_code_machine_000e_s "payload"
+  #define FSS_READ_format_code_name_000e_s    "Payload"
 
   #define FSS_READ_payload_s_length 7
 
@@ -43,6 +44,7 @@ extern "C" {
   #define FSS_READ_format_code_long_000e_s_length    8
   #define FSS_READ_format_code_human_000e_s_length   7
   #define FSS_READ_format_code_machine_000e_s_length 7
+  #define FSS_READ_format_code_name_000e_s_length    7
 
   extern const f_string_static_t fss_read_payload_s;
 
@@ -55,6 +57,7 @@ extern "C" {
   extern const f_string_static_t fss_read_format_code_long_000e_s;
   extern const f_string_static_t fss_read_format_code_human_000e_s;
   extern const f_string_static_t fss_read_format_code_machine_000e_s;
+  extern const f_string_static_t fss_read_format_code_name_000e_s;
 #endif // _di_fss_read_payload_s_
 
 #ifdef __cplusplus
index 0e83576d90d20283cd6f05f705495d93d34e0c88..3f0cdff5acdccd2a94c49b5bb4cfa6127baa7747 100644 (file)
@@ -37,7 +37,13 @@ extern "C" {
 
     fss_read_print_message_help_pipe(print);
 
-    fss_read_print_message_help_end_next(print);
+    fss_read_print_message_help_note(print, F_true);
+
+    // @todo use these stirngs in place of the format prints below.
+    //As an exceptional case, a --depth of 1 applies only to the explicit Object of 'header'.
+    //Content at this depth is processed as FSS-0001 Extended.
+    //
+    //The Content of the explicit Object of 'payload' will not contain any Content close pipe control codes when using --pipe.
 
     fl_print_format("%r  The FSS-000E (Payload) specification does not support quoted names, therefore the parameters '%[%r%r%]'", print->to, f_string_eol_s, print->set->notable, f_console_symbol_long_normal_s, fss_read_long_single_s, print->set->notable);
     fl_print_format(" and '%[%r%r%]' do nothing.%r%r", print->to, print->set->notable, f_console_symbol_long_normal_s, fss_read_long_double_s, print->set->notable, f_string_eol_s, f_string_eol_s);
index 03d3bbb3dc2e40f04bdf0849f1e7ed3f10b900b7..1bcc56e9d9dfe65debd5fe24d31bb37ddbf56a2e 100644 (file)
@@ -6,7 +6,7 @@ fss_basic_list_read \- Read data in \fBFSS-0003 (Basic List)\fR format.
 [\fI\,OPTIONS\/\fR] [\fI\,FILENAMES\/\fR]
 .SH DESCRIPTION
 .PP
-This program will print the Content associated with the given Object and Content main based on the \fBFSS-0002 Basic List\fR standard.
+This program will print the data associated with the given Object and Content based on the \fBFSS-0002 Basic List\fR standard.
 
 All numeric positions (indexes) start at 0 instead of 1.
 For example, a file of 17 lines would range from 0 to 16.
index d5710d7e207dd888d8cd34aa280337c7e6867818..402466e3fed13f73778cca39e371acbd8279fdf4 100644 (file)
@@ -6,7 +6,7 @@ fss_basic_read \- Read data in \fBFSS-0000 (Basic)\fR format.
 [\fI\,OPTIONS\/\fR] [\fI\,FILENAMES\/\fR]
 .SH DESCRIPTION
 .PP
-This program will print the Content associated with the given Object and Content main based on the \fBFSS-0000 Basic\fR standard.
+This program will print the data associated with the given Object and Content based on the \fBFSS-0000 Basic\fR standard.
 
 All numeric positions (indexes) start at 0 instead of 1.
 For example, a file of 17 lines would range from 0 to 16.
index adae22d45594deb145af3f69fed72a71538f910a..11f3f94eec0217a60a0c1f91e02b1d4c7c28c789 100644 (file)
@@ -6,7 +6,7 @@ fss_embedded_list_read \- Read data in \fBFSS-0008 (Embedded List)\fR format.
 [\fI\,OPTIONS\/\fR] [\fI\,FILENAMES\/\fR]
 .SH DESCRIPTION
 .PP
-This program will print the Content associated with the given Object and Content main based on the \fBFSS-0008 Embedded List\fR standard.
+This program will print the data associated with the given Object and Content based on the \fBFSS-0008 Embedded List\fR standard.
 
 All numeric positions (indexes) start at 0 instead of 1.
 For example, a file of 17 lines would range from 0 to 16.
index d30cf3472f7dd9139f133eae4f7017908e36974f..68231d190c47e1e532de1c834ae00c14e4084ce8 100644 (file)
@@ -6,7 +6,7 @@ fss_extended_list_read \- Read data in \fBFSS-0003 (Extended List)\fR format.
 [\fI\,OPTIONS\/\fR] [\fI\,FILENAMES\/\fR]
 .SH DESCRIPTION
 .PP
-This program will print the Content associated with the given Object and Content main based on the \fBFSS-0003 Extended List\fR standard.
+This program will print the data associated with the given Object and Content based on the \fBFSS-0003 Extended List\fR standard.
 
 All numeric positions (indexes) start at 0 instead of 1.
 For example, a file of 17 lines would range from 0 to 16.
index 73887e9ec9e52ddb50672a3e904901d1aeab7e2a..280c63848fc51beb4c4dbacb04d5061d99e4d527 100644 (file)
@@ -6,7 +6,7 @@ fss_extended_read \- Read data in \fBFSS-0001 (Extended)\fR format.
 [\fI\,OPTIONS\/\fR] [\fI\,FILENAMES\/\fR]
 .SH DESCRIPTION
 .PP
-This program will print the Content associated with the given Object and Content main based on the \fBFSS-0001 Extended\fR standard.
+This program will print the data associated with the given Object and Content based on the \fBFSS-0001 Extended\fR standard.
 
 All numeric positions (indexes) start at 0 instead of 1.
 For example, a file of 17 lines would range from 0 to 16.
index 4b723160d3486368266fa6618a20c3bda9321311..4a8d3599b86f12f48f2e832bd3d5c78775b8cb74 100644 (file)
@@ -6,7 +6,7 @@ fss_payload_read \- Read data in \fBFSS-000E (Payload)\fR format.
 [\fI\,OPTIONS\/\fR] [\fI\,FILENAMES\/\fR]
 .SH DESCRIPTION
 .PP
-This program will print the Content associated with the given Object and Content main based on the \fBFSS-000E Payload\fR standard.
+This program will print the data associated with the given Object and Content based on the \fBFSS-000E Payload\fR standard.
 
 All numeric positions (indexes) start at 0 instead of 1.
 For example, a file of 17 lines would range from 0 to 16.
index 36b136d73104d49a02644276cc18d292987f2a90..5d2e88d9e2c197582a73d3cde5bbf5944f3c89df 100644 (file)
@@ -14,6 +14,7 @@ extern "C" {
   const f_string_static_t fss_write_format_code_long_0000_s = macro_f_string_static_t_initialize_1(FSS_WRITE_format_code_long_0000_s, 0, FSS_WRITE_format_code_long_0000_s_length);
   const f_string_static_t fss_write_format_code_human_0000_s = macro_f_string_static_t_initialize_1(FSS_WRITE_format_code_human_0000_s, 0, FSS_WRITE_format_code_human_0000_s_length);
   const f_string_static_t fss_write_format_code_machine_0000_s = macro_f_string_static_t_initialize_1(FSS_WRITE_format_code_machine_0000_s, 0, FSS_WRITE_format_code_machine_0000_s_length);
+  const f_string_static_t fss_write_format_code_name_0000_s = macro_f_string_static_t_initialize_1(FSS_WRITE_format_code_name_0000_s, 0, FSS_WRITE_format_code_name_0000_s_length);
 #endif // _di_fss_write_basic_s_
 
 #ifdef __cplusplus
index 0fa359e464350dee8b603d14af2b1ae0f40bfad5..64109cd1e8017a5504f3ccf8df2116a556c3d697 100644 (file)
@@ -29,6 +29,7 @@ extern "C" {
   #define FSS_WRITE_format_code_long_0000_s    "fss-0000"
   #define FSS_WRITE_format_code_human_0000_s   "basic"
   #define FSS_WRITE_format_code_machine_0000_s "basic"
+  #define FSS_WRITE_format_code_name_0000_s    "Basic"
 
   #define FSS_WRITE_basic_standard_s_length 16
 
@@ -39,6 +40,7 @@ extern "C" {
   #define FSS_WRITE_format_code_long_0000_s_length    8
   #define FSS_WRITE_format_code_human_0000_s_length   5
   #define FSS_WRITE_format_code_machine_0000_s_length 5
+  #define FSS_WRITE_format_code_name_0000_s_length    5
 
   extern const f_string_static_t fss_write_basic_standard_s;
 
@@ -49,6 +51,7 @@ extern "C" {
   extern const f_string_static_t fss_write_format_code_long_0000_s;
   extern const f_string_static_t fss_write_format_code_human_0000_s;
   extern const f_string_static_t fss_write_format_code_machine_0000_s;
+  extern const f_string_static_t fss_write_format_code_name_0000_s;
 #endif // _di_fss_write_basic_s_
 
 #ifdef __cplusplus
index 5b1f07e5bb3a25c31296cff36a73f2a3439d9bc0..1af2e05440d6e3fbcc9823e29696dcbf68fd47ea 100644 (file)
@@ -14,6 +14,7 @@ extern "C" {
   const f_string_static_t fss_write_format_code_long_0002_s = macro_f_string_static_t_initialize_1(FSS_WRITE_format_code_long_0002_s, 0, FSS_WRITE_format_code_long_0002_s_length);
   const f_string_static_t fss_write_format_code_human_0002_s = macro_f_string_static_t_initialize_1(FSS_WRITE_format_code_human_0002_s, 0, FSS_WRITE_format_code_human_0002_s_length);
   const f_string_static_t fss_write_format_code_machine_0002_s = macro_f_string_static_t_initialize_1(FSS_WRITE_format_code_machine_0002_s, 0, FSS_WRITE_format_code_machine_0002_s_length);
+  const f_string_static_t fss_write_format_code_name_0002_s = macro_f_string_static_t_initialize_1(FSS_WRITE_format_code_name_0002_s, 0, FSS_WRITE_format_code_name_0002_s_length);
 #endif // _di_fss_write_basic_list_s_
 
 #ifdef __cplusplus
index 3afef3f4be7feca22a1176f217c9e6cece4d4ba8..47c45d4b40eaf43b6eed77dfa513d7cbbd56c399 100644 (file)
@@ -29,6 +29,7 @@ extern "C" {
   #define FSS_WRITE_format_code_long_0002_s    "fss-0002"
   #define FSS_WRITE_format_code_human_0002_s   "basic list"
   #define FSS_WRITE_format_code_machine_0002_s "basic_list"
+  #define FSS_WRITE_format_code_name_0002_s    "Basic List"
 
   #define FSS_WRITE_basic_list_standard_s_length 21
 
@@ -39,6 +40,7 @@ extern "C" {
   #define FSS_WRITE_format_code_long_0002_s_length    8
   #define FSS_WRITE_format_code_human_0002_s_length   10
   #define FSS_WRITE_format_code_machine_0002_s_length 10
+  #define FSS_WRITE_format_code_name_0002_s_length    10
 
   extern const f_string_static_t fss_write_basic_list_standard_s;
 
@@ -49,6 +51,7 @@ extern "C" {
   extern const f_string_static_t fss_write_format_code_long_0002_s;
   extern const f_string_static_t fss_write_format_code_human_0002_s;
   extern const f_string_static_t fss_write_format_code_machine_0002_s;
+  extern const f_string_static_t fss_write_format_code_name_0002_s;
 #endif // _di_fss_write_basic_list_s_
 
 #ifdef __cplusplus
index 05b4b64a4a260f8e120ff09c6c9a8bfe825ab58d..490ae789c0861c1dd86e2e8dd73eb80369d0f825 100644 (file)
@@ -14,6 +14,7 @@ extern "C" {
   const f_string_static_t fss_write_format_code_long_0008_s = macro_f_string_static_t_initialize_1(FSS_WRITE_format_code_long_0008_s, 0, FSS_WRITE_format_code_long_0008_s_length);
   const f_string_static_t fss_write_format_code_human_0008_s = macro_f_string_static_t_initialize_1(FSS_WRITE_format_code_human_0008_s, 0, FSS_WRITE_format_code_human_0008_s_length);
   const f_string_static_t fss_write_format_code_machine_0008_s = macro_f_string_static_t_initialize_1(FSS_WRITE_format_code_machine_0008_s, 0, FSS_WRITE_format_code_machine_0008_s_length);
+  const f_string_static_t fss_write_format_code_name_0008_s = macro_f_string_static_t_initialize_1(FSS_WRITE_format_code_name_0008_s, 0, FSS_WRITE_format_code_name_0008_s_length);
 #endif // _di_fss_write_embedded_list_s_
 
 #ifdef __cplusplus
index cde14a936ff8d83d162e6c2eac07c7ef1f560205..db576bc8f225f1578fc9c0e3d8b50c39750fac6b 100644 (file)
@@ -29,6 +29,7 @@ extern "C" {
   #define FSS_WRITE_format_code_long_0008_s    "fss-0008"
   #define FSS_WRITE_format_code_human_0008_s   "embedded list"
   #define FSS_WRITE_format_code_machine_0008_s "embedded_list"
+  #define FSS_WRITE_format_code_name_0008_s    "Embedded List"
 
   #define FSS_WRITE_embedded_list_standard_s_length 24
 
@@ -39,6 +40,7 @@ extern "C" {
   #define FSS_WRITE_format_code_long_0008_s_length    8
   #define FSS_WRITE_format_code_human_0008_s_length   13
   #define FSS_WRITE_format_code_machine_0008_s_length 13
+  #define FSS_WRITE_format_code_name_0008_s_length 13
 
   extern const f_string_static_t fss_write_embedded_list_standard_s;
 
@@ -49,6 +51,7 @@ extern "C" {
   extern const f_string_static_t fss_write_format_code_long_0008_s;
   extern const f_string_static_t fss_write_format_code_human_0008_s;
   extern const f_string_static_t fss_write_format_code_machine_0008_s;
+  extern const f_string_static_t fss_write_format_code_name_0008_s;
 #endif // _di_fss_write_embedded_list_s_
 
 #ifdef __cplusplus
index e77fc7dd5fd25bf027e966b8d4b05546e3b28139..5f0e0ddbc976db3d4a1a60565931928dc6ad11c6 100644 (file)
@@ -14,6 +14,7 @@ extern "C" {
   const f_string_static_t fss_write_format_code_long_0001_s = macro_f_string_static_t_initialize_1(FSS_WRITE_format_code_long_0001_s, 0, FSS_WRITE_format_code_long_0001_s_length);
   const f_string_static_t fss_write_format_code_human_0001_s = macro_f_string_static_t_initialize_1(FSS_WRITE_format_code_human_0001_s, 0, FSS_WRITE_format_code_human_0001_s_length);
   const f_string_static_t fss_write_format_code_machine_0001_s = macro_f_string_static_t_initialize_1(FSS_WRITE_format_code_machine_0001_s, 0, FSS_WRITE_format_code_machine_0001_s_length);
+  const f_string_static_t fss_write_format_code_name_0001_s = macro_f_string_static_t_initialize_1(FSS_WRITE_format_code_name_0001_s, 0, FSS_WRITE_format_code_name_0001_s_length);
 #endif // _di_fss_write_extended_s_
 
 #ifdef __cplusplus
index 4fbcce902f4ee7377fb925506e852bcb933c356a..90a63f285f5518f222c5994b35b034267775b313 100644 (file)
@@ -29,6 +29,7 @@ extern "C" {
   #define FSS_WRITE_format_code_long_0001_s    "fss-0001"
   #define FSS_WRITE_format_code_human_0001_s   "extended"
   #define FSS_WRITE_format_code_machine_0001_s "extended"
+  #define FSS_WRITE_format_code_name_0001_s    "Extended"
 
   #define FSS_WRITE_extended_standard_s_length 19
 
@@ -39,6 +40,7 @@ extern "C" {
   #define FSS_WRITE_format_code_long_0001_s_length    8
   #define FSS_WRITE_format_code_human_0001_s_length   8
   #define FSS_WRITE_format_code_machine_0001_s_length 8
+  #define FSS_WRITE_format_code_name_0001_s_length    8
 
   extern const f_string_static_t fss_write_extended_standard_s;
 
@@ -49,6 +51,7 @@ extern "C" {
   extern const f_string_static_t fss_write_format_code_long_0001_s;
   extern const f_string_static_t fss_write_format_code_human_0001_s;
   extern const f_string_static_t fss_write_format_code_machine_0001_s;
+  extern const f_string_static_t fss_write_format_code_name_0001_s;
 #endif // _di_fss_write_extended_s_
 
 #ifdef __cplusplus
index 16431bc598afbeb40abde4736f9d85999c29fd28..5e1ba3782277ec4353e2224847c1fa8c43586acf 100644 (file)
@@ -14,6 +14,7 @@ extern "C" {
   const f_string_static_t fss_write_format_code_long_0003_s = macro_f_string_static_t_initialize_1(FSS_WRITE_format_code_long_0003_s, 0, FSS_WRITE_format_code_long_0003_s_length);
   const f_string_static_t fss_write_format_code_human_0003_s = macro_f_string_static_t_initialize_1(FSS_WRITE_format_code_human_0003_s, 0, FSS_WRITE_format_code_human_0003_s_length);
   const f_string_static_t fss_write_format_code_machine_0003_s = macro_f_string_static_t_initialize_1(FSS_WRITE_format_code_machine_0003_s, 0, FSS_WRITE_format_code_machine_0003_s_length);
+  const f_string_static_t fss_write_format_code_name_0003_s = macro_f_string_static_t_initialize_1(FSS_WRITE_format_code_name_0003_s, 0, FSS_WRITE_format_code_name_0003_s_length);
 #endif // _di_fss_write_extended_list_s_
 
 #ifdef __cplusplus
index e00cd13adad5ec8c3287e1d5ee2dacba53bce31b..140ae8446ad3226d9b70e9c68c688ce6d705e47d 100644 (file)
@@ -29,6 +29,7 @@ extern "C" {
   #define FSS_WRITE_format_code_long_0003_s    "fss-0003"
   #define FSS_WRITE_format_code_human_0003_s   "extended list"
   #define FSS_WRITE_format_code_machine_0003_s "extended_list"
+  #define FSS_WRITE_format_code_name_0003_s    "Extended List"
 
   #define FSS_WRITE_extended_list_standard_s_length 24
 
@@ -39,6 +40,7 @@ extern "C" {
   #define FSS_WRITE_format_code_long_0003_s_length    8
   #define FSS_WRITE_format_code_human_0003_s_length   13
   #define FSS_WRITE_format_code_machine_0003_s_length 13
+  #define FSS_WRITE_format_code_name_0003_s_length    13
 
   extern const f_string_static_t fss_write_extended_list_standard_s;
 
@@ -49,6 +51,7 @@ extern "C" {
   extern const f_string_static_t fss_write_format_code_long_0003_s;
   extern const f_string_static_t fss_write_format_code_human_0003_s;
   extern const f_string_static_t fss_write_format_code_machine_0003_s;
+  extern const f_string_static_t fss_write_format_code_name_0003_s;
 #endif // _di_fss_write_extended_list_s_
 
 #ifdef __cplusplus
index 1eb705191962af496422ace612f272be51ead95e..b192bdecd954f1774bdfd3a6fa5061d9b1da4876 100644 (file)
@@ -16,6 +16,7 @@ extern "C" {
   const f_string_static_t fss_write_format_code_long_000e_s = macro_f_string_static_t_initialize_1(FSS_WRITE_format_code_long_000e_s, 0, FSS_WRITE_format_code_long_000e_s_length);
   const f_string_static_t fss_write_format_code_human_000e_s = macro_f_string_static_t_initialize_1(FSS_WRITE_format_code_human_000e_s, 0, FSS_WRITE_format_code_human_000e_s_length);
   const f_string_static_t fss_write_format_code_machine_000e_s = macro_f_string_static_t_initialize_1(FSS_WRITE_format_code_machine_000e_s, 0, FSS_WRITE_format_code_machine_000e_s_length);
+  const f_string_static_t fss_write_format_code_name_000e_s = macro_f_string_static_t_initialize_1(FSS_WRITE_format_code_name_000e_s, 0, FSS_WRITE_format_code_name_000e_s_length);
 #endif // _di_fss_write_payload_s_
 
 #ifdef __cplusplus
index a42e3429e2cb0701eb18f779e4ff2d980dd5889d..011d1b4102fb0c108c323f94c563cacdd59362c3 100644 (file)
@@ -31,6 +31,7 @@ extern "C" {
   #define FSS_WRITE_format_code_long_000e_s    "fss-000e"
   #define FSS_WRITE_format_code_human_000e_s   "payload"
   #define FSS_WRITE_format_code_machine_000e_s "payload"
+  #define FSS_WRITE_format_code_name_000e_s    "Payload"
 
   #define FSS_WRITE_payload_s_length 7
 
@@ -43,6 +44,7 @@ extern "C" {
   #define FSS_WRITE_format_code_long_000e_s_length    8
   #define FSS_WRITE_format_code_human_000e_s_length   7
   #define FSS_WRITE_format_code_machine_000e_s_length 7
+  #define FSS_WRITE_format_code_name_000e_s_length    7
 
   extern const f_string_static_t fss_write_payload_s;
 
@@ -55,6 +57,7 @@ extern "C" {
   extern const f_string_static_t fss_write_format_code_long_000e_s;
   extern const f_string_static_t fss_write_format_code_human_000e_s;
   extern const f_string_static_t fss_write_format_code_machine_000e_s;
+  extern const f_string_static_t fss_write_format_code_name_000e_s;
 #endif // _di_fss_write_payload_s_
 
 #ifdef __cplusplus