]> Kevux Git Server - fll/commitdiff
Update: Switch to the global array for print messages for fll_program.
authorKevin Day <Kevin@kevux.org>
Mon, 31 Mar 2025 02:07:05 +0000 (21:07 -0500)
committerKevin Day <Kevin@kevux.org>
Mon, 31 Mar 2025 02:07:05 +0000 (21:07 -0500)
This migrates the string messages to a single array.
At this time the array as a whole is enabled/disabled via the macros.
This may result in more strings included that needed.

This provides a single location to manage the string messages.
This may help with different languages.

19 files changed:
build/disable/level_2/fll_program.h
build/level_2/settings
build/monolithic/settings
build/stand_alone/byte_dump.config.h
build/stand_alone/byte_dump.settings
build/stand_alone/example.config.h
build/stand_alone/example.settings
build/stand_alone/fake.config.h
build/stand_alone/fake.settings
build/stand_alone/firewall.config.h
build/stand_alone/firewall.settings
build/stand_alone/utf8.config.h
build/stand_alone/utf8.settings
level_2/fll_error/c/error/string.h
level_2/fll_program/c/program.h
level_2/fll_program/c/program/print.c
level_2/fll_program/c/program/string.c [new file with mode: 0644]
level_2/fll_program/c/program/string.h [new file with mode: 0644]
level_2/fll_program/data/build/settings

index 8d3cc5cf886ed4a1af25af0ff6b058c4ecdfb996..c64a7fca5d1b7f947fe7fd1197ef10c13072d927 100644 (file)
@@ -55,6 +55,8 @@
 #define _di_fll_program_print_help_usage_
 #define _di_fll_program_print_signal_received_
 #define _di_fll_program_print_version_
+#define _di_fll_program_s_a_
+#define _di_fll_program_s_e_
 #define _di_fll_program_standard_set_down_
 #define _di_fll_program_standard_set_up_
 #define _di_fll_program_standard_signal_handle_
index a7bf491e428021f37810492a6c5bd5686ad88663..2c9d48d8baf0bd2e2a366366d5dba21ce397f7b4 100644 (file)
@@ -46,7 +46,7 @@ build_sources_library fss.c fss/basic.c fss/basic_list.c fss/embedded_list.c fss
 build_sources_library fss_status_string.c
 build_sources_library iki.c private-iki.c
 build_sources_library print.c
-build_sources_library program.c program/common.c program/print.c private-program.c
+build_sources_library program.c program/common.c program/print.c program/string.c private-program.c
 
 build_sources_headers control_group.h
 build_sources_headers error.h error/common.h error/string.h
@@ -56,7 +56,7 @@ build_sources_headers fss.h fss/basic.h fss/basic_list.h fss/embedded_list.h fss
 build_sources_headers fss_status_string.h
 build_sources_headers iki.h
 build_sources_headers print.h
-build_sources_headers program.h program/common.h program/print.h
+build_sources_headers program.h program/common.h program/print.h program/string.h
 
 build_script yes
 build_shared yes
index 761fac719c6242b6d288726ce37cfd34740b8200..2026a5d0b80f61e7be0027f31480901b13219657 100644 (file)
@@ -104,7 +104,7 @@ build_sources_library level_2/fss.c level_2/fss/basic.c level_2/fss/basic_list.c
 build_sources_library level_2/fss_status_string.c
 build_sources_library level_2/iki.c level_2/private-iki.c
 build_sources_library level_2/print.c
-build_sources_library level_2/program.c level_2/program/common.c level_2/program/print.c level_2/private-program.c
+build_sources_library level_2/program.c level_2/program/common.c level_2/program/print.c level_2/program/string.c level_2/private-program.c
 
 build_sources_library-thread level_0/thread.c level_0/thread/attribute.c level_0/thread/barrier.c level_0/thread/barrier_attribute.c level_0/thread/condition.c level_0/thread/condition_attribute.c level_0/thread/id.c level_0/thread/key.c level_0/thread/lock.c level_0/thread/lock_attribute.c level_0/thread/mutex.c level_0/thread/mutex_attribute.c level_0/thread/once.c level_0/thread/semaphore.c level_0/thread/set.c level_0/thread/spin.c
 
@@ -167,7 +167,7 @@ build_sources_headers level_2/fss.h level_2/fss/basic.h level_2/fss/basic_list.h
 build_sources_headers level_2/fss_status_string.h
 build_sources_headers level_2/iki.h
 build_sources_headers level_2/print.h
-build_sources_headers level_2/program.h level_2/program/common.h level_2/program/print.h
+build_sources_headers level_2/program.h level_2/program/common.h level_2/program/print.h level_2/program/string.h
 
 build_sources_headers-thread level_0/thread.h level_0/thread/attribute.h level_0/thread/barrier.h level_0/thread/barrier_attribute.h level_0/thread/condition.h level_0/thread/condition_attribute.h level_0/thread/id.h level_0/thread/key.h level_0/thread/lock.h level_0/thread/lock_attribute.h level_0/thread/mutex.h level_0/thread/mutex_attribute.h level_0/thread/once.h level_0/thread/semaphore.h level_0/thread/set.h level_0/thread/spin.h
 
index 3dc05770165cc9d5842fc3390e5f30e1e762c5bd..77b520a38bcc5ada56945b57529647193b6aea07 100644 (file)
 //#define _di_fll_program_print_help_usage_
 //#define _di_fll_program_print_signal_received_
 //#define _di_fll_program_print_version_
+//#define _di_fll_program_s_a_
+//#define _di_fll_program_s_e_
 //#define _di_fll_program_standard_set_down_
 //#define _di_fll_program_standard_set_up_
 //#define _di_fll_program_standard_signal_handle_
index 4ce71ac6648e6a231ccc30dd71e33891d0c475b9..89cc1abe151d4f8f30b1eba0314f5a2a9683cf7f 100644 (file)
@@ -59,7 +59,7 @@ build_sources_program fll/level_1/print.c fll/level_1/private-print.c fll/level_
 
 build_sources_program fll/level_2/error.c fll/level_2/private-error.c fll/level_2/error/common.c fll/level_2/error/string.c
 build_sources_program fll/level_2/print.c
-build_sources_program fll/level_2/program.c fll/level_2/program/common.c fll/level_2/program/print.c fll/level_2/private-program.c
+build_sources_program fll/level_2/program.c fll/level_2/program/common.c fll/level_2/program/print.c fll/level_2/program/string.c fll/level_2/private-program.c
 
 build_sources_program program/byte_dump/main/common.c program/byte_dump/main/common/define.c program/byte_dump/main/common/enumeration.c program/byte_dump/main/common/print.c program/byte_dump/main/common/string.c program/byte_dump/main/common/type.c program/byte_dump/main/print/data.c program/byte_dump/main/print/error.c program/byte_dump/main/print/message.c program/byte_dump/main/process.c program/byte_dump/main/signal.c program/byte_dump/main/thread.c program/byte_dump/main/byte_dump.c
 
index 39b338e5841fe4c36d387ee8284efd68bb3f8442..05682a463ecde46efb34cf8977e66997b5e7a447 100644 (file)
 #define _di_f_string_format_IN_s_
 #define _di_f_string_format_I_s_
 #define _di_f_string_format_QQ_double_s_
-#define _di_f_string_format_QQ_single_s_
+//#define _di_f_string_format_QQ_single_s_
 #define _di_f_string_format_Q_double_s_
 #define _di_f_string_format_Q_range_double_s_
 #define _di_f_string_format_Q_range_single_s_
 //#define _di_fll_program_print_help_usage_
 //#define _di_fll_program_print_signal_received_
 //#define _di_fll_program_print_version_
+//#define _di_fll_program_s_a_
+//#define _di_fll_program_s_e_
 //#define _di_fll_program_standard_set_down_
 //#define _di_fll_program_standard_set_up_
 //#define _di_fll_program_standard_signal_handle_
index a84e84f3107f5799b71b0cc30e39fecd8e9ca2b3..0cfc7543ab7c4020443d7c9b190875e1b319144c 100644 (file)
@@ -58,7 +58,7 @@ build_sources_program fll/level_1/print.c fll/level_1/private-print.c fll/level_
 
 build_sources_program fll/level_2/error.c fll/level_2/private-error.c fll/level_2/error/common.c fll/level_2/error/string.c
 build_sources_program fll/level_2/print.c
-build_sources_program fll/level_2/program.c fll/level_2/program/common.c fll/level_2/program/print.c fll/level_2/private-program.c
+build_sources_program fll/level_2/program.c fll/level_2/program/common.c fll/level_2/program/print.c fll/level_2/program/string.c fll/level_2/private-program.c
 
 build_sources_program program/example/main/common.c program/example/main/common/define.c program/example/main/common/enumeration.c program/example/main/common/print.c program/example/main/common/string.c program/example/main/common/type.c
 build_sources_program program/example/main/print/data.c program/example/main/print/debug.c program/example/main/print/error.c program/example/main/print/message.c program/example/main/print/verbose.c program/example/main/print/warning.c
index 164c12fb48ae3943d57ec5e9252e6390972ba5f6..33229cfd3dd2e75d876a337d6e988ad609619825 100644 (file)
 //#define _di_fll_program_print_help_usage_
 //#define _di_fll_program_print_signal_received_
 //#define _di_fll_program_print_version_
+//#define _di_fll_program_s_a_
+//#define _di_fll_program_s_e_
 //#define _di_fll_program_standard_set_down_
 //#define _di_fll_program_standard_set_up_
 //#define _di_fll_program_standard_signal_handle_
index ac9225c1d2bd5b4c472d48a84105477d428d5fc3..3f9cea89e0af6cc90662ecf2b6ab3f6e8efe0539 100644 (file)
@@ -82,7 +82,7 @@ build_sources_program fll/level_2/execute.c fll/level_2/private-execute.c
 build_sources_program fll/level_2/file.c fll/level_2/private-file.c
 build_sources_program fll/level_2/fss.c fll/level_2/fss/basic.c fll/level_2/fss/basic_list.c fll/level_2/fss/embedded_list.c fll/level_2/fss/extended.c fll/level_2/fss/extended_list.c fll/level_2/fss/payload.c
 build_sources_program fll/level_2/print.c
-build_sources_program fll/level_2/program.c fll/level_2/program/common.c fll/level_2/program/print.c fll/level_2/private-program.c
+build_sources_program fll/level_2/program.c fll/level_2/program/common.c fll/level_2/program/print.c fll/level_2/program/string.c fll/level_2/private-program.c
 
 build_sources_program program/fake/main/build.c program/fake/main/clean.c program/fake/main/common.c program/fake/main/fake.c program/fake/main/make.c program/fake/main/print/common.c program/fake/main/print/context.c program/fake/main/print/debug.c program/fake/main/print/error.c program/fake/main/print/message.c program/fake/main/print/operation.c program/fake/main/print/warning.c program/fake/main/print/verbose.c program/fake/main/signal.c program/fake/main/skeleton.c program/fake/main/thread.c
 build_sources_program program/fake/main/build/enumeration.c program/fake/main/build/library.c program/fake/main/build/load.c program/fake/main/build/object.c program/fake/main/build/print/compile.c program/fake/main/build/print/error.c program/fake/main/build/print/message.c program/fake/main/build/print/verbose.c program/fake/main/build/print/warning.c program/fake/main/build/program.c program/fake/main/build/skeleton.c program/fake/main/build/string.c
index 4c47e621f2c052fd0e54bf91034988893039378e..98f976e0fdcecad335e5054abf8ef4fc3454a9d3 100644 (file)
 #define _di_f_string_format_IN_s_
 #define _di_f_string_format_I_s_
 #define _di_f_string_format_QQ_double_s_
-#define _di_f_string_format_QQ_single_s_
+//#define _di_f_string_format_QQ_single_s_
 #define _di_f_string_format_Q_double_s_
 #define _di_f_string_format_Q_range_double_s_
 //#define _di_f_string_format_Q_range_single_s_
 //#define _di_fll_program_print_help_usage_
 //#define _di_fll_program_print_signal_received_
 //#define _di_fll_program_print_version_
+//#define _di_fll_program_s_a_
+//#define _di_fll_program_s_e_
 //#define _di_fll_program_standard_set_down_
 //#define _di_fll_program_standard_set_up_
 //#define _di_fll_program_standard_signal_handle_
index 6f0a54303713f62203e1067a5d361adf6a53d2fd..728abeb2c2718f3c17d0d51db87b03b13cfbaaf4 100644 (file)
@@ -75,7 +75,7 @@ build_sources_program fll/level_2/error.c fll/level_2/private-error.c fll/level_
 build_sources_program fll/level_2/execute.c fll/level_2/private-execute.c
 build_sources_program fll/level_2/fss.c fll/level_2/fss/basic.c fll/level_2/fss/basic_list.c fll/level_2/fss/embedded_list.c fll/level_2/fss/extended.c fll/level_2/fss/extended_list.c fll/level_2/fss/payload.c
 build_sources_program fll/level_2/print.c
-build_sources_program fll/level_2/program.c fll/level_2/program/common.c fll/level_2/program/print.c fll/level_2/private-program.c
+build_sources_program fll/level_2/program.c fll/level_2/program/common.c fll/level_2/program/print.c fll/level_2/program/string.c fll/level_2/private-program.c
 
 build_sources_program program/firewall/main/common.c program/firewall/main/common/define.c program/firewall/main/common/enumeration.c program/firewall/main/common/print.c program/firewall/main/common/string.c program/firewall/main/common/type.c
 build_sources_program program/firewall/main/print/debug.c program/firewall/main/print/error.c program/firewall/main/print/message.c program/firewall/main/print/warning.c
index 2516e04b1e021db60d4411abee5d761c4a809bdb..c3f99ad220b04368bc4950e7a63f1a90e04605f1 100644 (file)
 //#define _di_fll_program_print_help_usage_
 //#define _di_fll_program_print_signal_received_
 //#define _di_fll_program_print_version_
+//#define _di_fll_program_s_a_
+//#define _di_fll_program_s_e_
 //#define _di_fll_program_standard_set_down_
 //#define _di_fll_program_standard_set_up_
 //#define _di_fll_program_standard_signal_handle_
index 85baa956e1abe29be9c2bdeea7126c89e415cd60..de8d7641825239fecb9f46ebc8b5516d286f9fde 100644 (file)
@@ -60,7 +60,7 @@ build_sources_program fll/level_1/print.c fll/level_1/private-print.c fll/level_
 
 build_sources_program fll/level_2/error.c fll/level_2/private-error.c fll/level_2/error/common.c fll/level_2/error/string.c
 build_sources_program fll/level_2/print.c
-build_sources_program fll/level_2/program.c fll/level_2/program/common.c fll/level_2/program/print.c fll/level_2/private-program.c
+build_sources_program fll/level_2/program.c fll/level_2/program/common.c fll/level_2/program/print.c fll/level_2/program/string.c fll/level_2/private-program.c
 
 build_sources_program program/utf8/main/common.c program/utf8/main/common/define.c program/utf8/main/common/enumeration.c program/utf8/main/common/print.c program/utf8/main/common/string.c program/utf8/main/common/type.c program/utf8/main/bytesequence.c program/utf8/main/codepoint.c program/utf8/main/print/data.c program/utf8/main/print/error.c program/utf8/main/print/message.c program/utf8/main/process.c program/utf8/main/signal.c program/utf8/main/thread.c program/utf8/main/utf8.c
 
index e9042d2872dc05d0677efc605f2aa6369fde2283..eca47cc3f1202ca07eae99e0d12abba9fa8d170d 100644 (file)
@@ -22,7 +22,7 @@ extern "C" {
  * The macro macro_fll_error_s() is used to reference the array index by the enum name.
  *
  * macro_fll_error_s():
- *   - name: The name of the function.
+ *   - name: A name hinting at the message.
  */
 #ifndef _di_fll_error_s_a_
   extern const f_string_t fll_error_s_a[];
index 46bf7122064c57b342a1d950c8290578620f81b5..1a190b471f007cf4f955318c7b213d5a9381a252 100644 (file)
@@ -32,6 +32,7 @@
 // FLL-2 program includes.
 #include <fll/level_2/program/common.h>
 #include <fll/level_2/program/print.h>
+#include <fll/level_2/program/string.h>
 
 #ifdef __cplusplus
 extern "C" {
index 1ccce98fd1ef2cceab455d22fa6f59c666392538..2e6644a16869ed0119242934da907edc2785bc25 100644 (file)
@@ -13,18 +13,18 @@ extern "C" {
 
     f_file_stream_lock(print->to);
 
-    fl_print_format("Copyright © %Q.%r", print->to, year_author, f_string_eol_s);
+    fl_print_format(macro_fll_program_s(000_copyright), print->to, year_author, f_string_eol_s);
 
     #ifndef _di_detailed_copyright_
       if (print->verbosity > f_console_verbosity_quiet_e) {
         if (print->verbosity > f_console_verbosity_normal_e) {
-          fl_print_format("%rThis program comes with ABSOLUTELY NO WARRANTY.%r", print->to, f_string_eol_s, f_string_eol_s);
-          fl_print_format("This is free software, and you are welcome to modify or redistribute in accordance to the license.%r", print->to, f_string_eol_s);
+          fl_print_format(macro_fll_program_s(001_no_warranty), print->to, f_string_eol_s, f_string_eol_s);
+          fl_print_format(macro_fll_program_s(002_free_modify), print->to, f_string_eol_s);
         }
 
-        fl_print_format("%rSource code license lgpl-2.1-or-later.%r", print->to, f_string_eol_s, f_string_eol_s);
-        fl_print_format("Standard and specification license open-standard-license-1.0-or-greater.%r", print->to, f_string_eol_s);
-        fl_print_format("Documentation license cc-by-sa-4.0.%r", print->to, f_string_eol_s);
+        fl_print_format(macro_fll_program_s(003_source_license), print->to, f_string_eol_s, f_string_eol_s);
+        fl_print_format(macro_fll_program_s(004_specification_license), print->to, f_string_eol_s);
+        fl_print_format(macro_fll_program_s(005_documentation_license), print->to, f_string_eol_s);
       }
     #endif // _di_detailed_copyright_
 
@@ -62,10 +62,10 @@ extern "C" {
 
     f_file_stream_lock(print->to);
 
-    fl_print_format("%[%QThe%] ", print->to, print->set->error, print->prefix, print->set->error);
+    fl_print_format(macro_fll_program_s(006_the), print->to, print->set->error, print->prefix, print->set->error);
     fl_print_format(f_string_format_Q_single_s.string, print->to, print->set->notable, variable, print->set->notable);
-    fl_print_format("%[ is missing or has a length of%] ", print->to, print->set->error, print->set->error);
-    fl_print_format("%[0%]", print->to, print->set->notable, print->set->notable);
+    fl_print_format(macro_fll_program_s(007_missing_or_length), print->to, print->set->error, print->set->error);
+    fl_print_format(macro_fll_program_s(008_zero), print->to, print->set->notable, print->set->notable);
     fl_print_format(f_string_format_sentence_end_single_s.string, print->to, print->set->error, print->set->error, f_string_eol_s);
 
     f_file_stream_unlock(print->to);
@@ -84,11 +84,11 @@ extern "C" {
 
     f_file_stream_lock(print->to);
 
-    fl_print_format("%[%QThe '%]", print->to, print->set->error, print->prefix, print->set->error);
+    fl_print_format(macro_fll_program_s(009_the_single_quote), print->to, print->set->error, print->prefix, print->set->error);
     fl_print_format(f_string_format_QQ_single_s.string, print->to, print->set->notable, symbol_1, name_1, print->set->notable);
-    fl_print_format("%[' parameter and the '%]", print->to, print->set->error, print->set->error);
+    fl_print_format(macro_fll_program_s(010_parameter_and_the), print->to, print->set->error, print->set->error);
     fl_print_format(f_string_format_QQ_single_s.string, print->to, print->set->notable, symbol_2, name_2, print->set->notable);
-    fl_print_format("%[' parameter must be specified the same number of times.%]%r", print->to, print->set->error, print->set->error, f_string_eol_s);
+    fl_print_format(macro_fll_program_s(011_parameter_same_times), print->to, print->set->error, print->set->error, f_string_eol_s);
 
     f_file_stream_unlock(print->to);
 
@@ -106,13 +106,13 @@ extern "C" {
 
     f_file_stream_lock(print->to);
 
-    fl_print_format("%[%QThe '%]", print->to, print->set->error, print->prefix, print->set->error);
+    fl_print_format(macro_fll_program_s(009_the_single_quote), print->to, print->set->error, print->prefix, print->set->error);
     fl_print_format(f_string_format_QQ_single_s.string, print->to, print->set->notable, symbol_1, name_1, print->set->notable);
-    fl_print_format("%[' parameter and the '%]", print->to, print->set->error, print->set->error);
+    fl_print_format(macro_fll_program_s(010_parameter_and_the), print->to, print->set->error, print->set->error);
     fl_print_format(f_string_format_QQ_single_s.string, print->to, print->set->notable, symbol_2, name_2, print->set->notable);
-    fl_print_format("%[' parameter must be specified the same number of times when not specifying the '%]", print->to, print->set->error, print->set->error);
+    fl_print_format(macro_fll_program_s(012_parameter_same_times_not_specify), print->to, print->set->error, print->set->error);
     fl_print_format(f_string_format_QQ_single_s.string, print->to, print->set->notable, symbol_3, name_3, print->set->notable);
-    fl_print_format("%[' parameter.%]%r", print->to, print->set->error, print->set->error, f_string_eol_s);
+    fl_print_format(macro_fll_program_s(013_single_quote_parameter_period), print->to, print->set->error, print->set->error, f_string_eol_s);
 
     f_file_stream_unlock(print->to);
 
@@ -130,11 +130,11 @@ extern "C" {
 
     f_file_stream_lock(print->to);
 
-    fl_print_format("%[%QCannot specify the '%]", print->to, print->set->error, print->prefix, print->set->error);
+    fl_print_format(macro_fll_program_s(014_cannot_specify), print->to, print->set->error, print->prefix, print->set->error);
     fl_print_format(f_string_format_QQ_single_s.string, print->to, print->set->notable, symbol_1, name_1, print->set->notable);
-    fl_print_format("%[' parameter with the '%]", print->to, print->set->error, print->set->error);
+    fl_print_format(macro_fll_program_s(015_parameter_with_the), print->to, print->set->error, print->set->error);
     fl_print_format(f_string_format_QQ_single_s.string, print->to, print->set->notable, symbol_2, name_2, print->set->notable);
-    fl_print_format("%[' parameter.%]%r", print->to, print->set->error, print->set->error, f_string_eol_s);
+    fl_print_format(macro_fll_program_s(013_single_quote_parameter_period), print->to, print->set->error, print->set->error, f_string_eol_s);
 
     f_file_stream_unlock(print->to);
 
@@ -152,13 +152,13 @@ extern "C" {
 
     f_file_stream_lock(print->to);
 
-    fl_print_format("%[%QCannot specify the '%]", print->to, print->set->error, print->prefix, print->set->error);
+    fl_print_format(macro_fll_program_s(014_cannot_specify), print->to, print->set->error, print->prefix, print->set->error);
     fl_print_format(f_string_format_QQ_single_s.string, print->to, print->set->notable, symbol_1, name_1, print->set->notable);
-    fl_print_format("%[' parameter with the '%]", print->to, print->set->error, print->set->error);
+    fl_print_format(macro_fll_program_s(015_parameter_with_the), print->to, print->set->error, print->set->error);
     fl_print_format(f_string_format_QQ_single_s.string, print->to, print->set->notable, symbol_2, name_2, print->set->notable);
-    fl_print_format("%[' parameter without the '%]", print->to, print->set->error, print->set->error);
+    fl_print_format(macro_fll_program_s(016_parameter_without_the), print->to, print->set->error, print->set->error);
     fl_print_format(f_string_format_QQ_single_s.string, print->to, print->set->notable, symbol_3, name_3, print->set->notable);
-    fl_print_format("%[' parameter.%]%r", print->to, print->set->error, print->set->error, f_string_eol_s);
+    fl_print_format(macro_fll_program_s(013_single_quote_parameter_period), print->to, print->set->error, print->set->error, f_string_eol_s);
 
     f_file_stream_unlock(print->to);
 
@@ -176,9 +176,9 @@ extern "C" {
 
     f_file_stream_lock(print->to);
 
-    fl_print_format("%[%QCannot specify the '%]", print->to, print->set->error, print->prefix, print->set->error);
+    fl_print_format(macro_fll_program_s(014_cannot_specify), print->to, print->set->error, print->prefix, print->set->error);
     fl_print_format(f_string_format_QQ_single_s.string, print->to, print->set->notable, symbol, parameter, print->set->notable);
-    fl_print_format("%[' when processing a pipe.%]%r", print->to, print->set->error, print->set->error, f_string_eol_s);
+    fl_print_format(macro_fll_program_s(017_when_process_pipe), print->to, print->set->error, print->set->error, f_string_eol_s);
 
     f_file_stream_unlock(print->to);
 
@@ -196,13 +196,13 @@ extern "C" {
 
     f_file_stream_lock(print->to);
 
-    fl_print_format("%[%QThe '%]", print->to, print->set->error, print->prefix, print->set->error);
+    fl_print_format(macro_fll_program_s(009_the_single_quote), print->to, print->set->error, print->prefix, print->set->error);
     fl_print_format(f_string_format_QQ_single_s.string, print->to, print->set->notable, symbol_1, name_1, print->set->notable);
-    fl_print_format("%[' parameter only allows either the '%]", print->to, print->set->error, print->set->error);
+    fl_print_format(macro_fll_program_s(018_parameter_only_allows_either), print->to, print->set->error, print->set->error);
     fl_print_format(f_string_format_QQ_single_s.string, print->to, print->set->notable, symbol_2, name_2, print->set->notable);
-    fl_print_format("%[' parameter or the '%]", print->to, print->set->error, print->set->error);
+    fl_print_format(macro_fll_program_s(019_parameter_or_the), print->to, print->set->error, print->set->error);
     fl_print_format(f_string_format_QQ_single_s.string, print->to, print->set->notable, symbol_3, name_3, print->set->notable);
-    fl_print_format("%[' parameter, but not both.%]%r", print->to, print->set->error, print->set->error, f_string_eol_s);
+    fl_print_format(macro_fll_program_s(020_parameter_not_both), print->to, print->set->error, print->set->error, f_string_eol_s);
 
     f_file_stream_unlock(print->to);
 
@@ -220,9 +220,9 @@ extern "C" {
 
     f_file_stream_lock(print->to);
 
-    fl_print_format("%[%QThe parameter%] ", print->to, print->set->error, print->prefix, print->set->error);
+    fl_print_format(macro_fll_program_s(021_the_parameter), print->to, print->set->error, print->prefix, print->set->error);
     fl_print_format(f_string_format_QQ_single_s.string, print->to, print->set->notable, symbol, name, print->set->notable);
-    fl_print_format(" %[is specified as an empty string, but an empty string is not allowed.%]%r", print->to, print->set->error, print->set->error, f_string_eol_s);
+    fl_print_format(macro_fll_program_s(022_specify_empty_not_allow), print->to, print->set->error, print->set->error, f_string_eol_s);
 
     f_file_stream_unlock(print->to);
 
@@ -240,11 +240,11 @@ extern "C" {
 
     f_file_stream_lock(print->to);
 
-    fl_print_format("%[%QThe value '%]", print->to, print->set->error, print->prefix, print->set->error);
+    fl_print_format(macro_fll_program_s(023_the_value), print->to, print->set->error, print->prefix, print->set->error);
     fl_print_format(f_string_format_Q_single_s.string, print->to, print->set->notable, value, print->set->notable);
-    fl_print_format("%[' for the parameter '%]", print->to, print->set->error, print->set->error);
+    fl_print_format(macro_fll_program_s(024_for_the_parameter), print->to, print->set->error, print->set->error);
     fl_print_format(f_string_format_QQ_single_s.string, print->to, print->set->notable, symbol, name, print->set->notable);
-    fl_print_format("%[' must not be less than %]", print->to, print->set->error, print->set->error);
+    fl_print_format(macro_fll_program_s(025_not_be_less_than), print->to, print->set->error, print->set->error);
     fl_print_format(f_string_format_Q_single_s.string, print->to, print->set->notable, than, print->set->notable);
     fl_print_format(f_string_format_sentence_end_single_s.string, print->to, print->set->error, print->set->error, f_string_eol_s);
 
@@ -264,11 +264,11 @@ extern "C" {
 
     f_file_stream_lock(print->to);
 
-    fl_print_format("%[%QThe value '%]", print->to, print->set->error, print->prefix, print->set->error);
+    fl_print_format(macro_fll_program_s(023_the_value), print->to, print->set->error, print->prefix, print->set->error);
     fl_print_format(f_string_format_Q_single_s.string, print->to, print->set->notable, value, print->set->notable);
-    fl_print_format("%[' for the parameter '%]", print->to, print->set->error, print->set->error);
+    fl_print_format(macro_fll_program_s(024_for_the_parameter), print->to, print->set->error, print->set->error);
     fl_print_format(f_string_format_QQ_single_s.string, print->to, print->set->notable, symbol, name, print->set->notable);
-    fl_print_format("%[' must not be more than %]", print->to, print->set->error, print->set->error);
+    fl_print_format(macro_fll_program_s(026_not_be_more_than), print->to, print->set->error, print->set->error);
     fl_print_format(f_string_format_Q_single_s.string, print->to, print->set->notable, than, print->set->notable);
     fl_print_format(f_string_format_sentence_end_single_s.string, print->to, print->set->error, print->set->error, f_string_eol_s);
 
@@ -288,11 +288,11 @@ extern "C" {
 
     f_file_stream_lock(print->to);
 
-    fl_print_format("%[%QThe value '%]", print->to, print->set->error, print->prefix, print->set->error);
+    fl_print_format(macro_fll_program_s(023_the_value), print->to, print->set->error, print->prefix, print->set->error);
     fl_print_format(f_string_format_Q_single_s.string, print->to, print->set->notable, value, print->set->notable);
-    fl_print_format("%[' for the parameter '%]", print->to, print->set->error, print->set->error);
+    fl_print_format(macro_fll_program_s(024_for_the_parameter), print->to, print->set->error, print->set->error);
     fl_print_format(f_string_format_QQ_single_s.string, print->to, print->set->notable, symbol, name, print->set->notable);
-    fl_print_format("%[' is not a valid integer.%]%r", print->to, print->set->error, print->set->error, f_string_eol_s);
+    fl_print_format(macro_fll_program_s(027_not_valid_integer), print->to, print->set->error, print->set->error, f_string_eol_s);
 
     f_file_stream_unlock(print->to);
 
@@ -310,11 +310,11 @@ extern "C" {
 
     f_file_stream_lock(print->to);
 
-    fl_print_format("%[%QThe value '%]", print->to, print->set->error, print->prefix, print->set->error);
+    fl_print_format(macro_fll_program_s(023_the_value), print->to, print->set->error, print->prefix, print->set->error);
     fl_print_format(f_string_format_Q_single_s.string, print->to, print->set->notable, value, print->set->notable);
-    fl_print_format("%[' for the parameter '%]", print->to, print->set->error, print->set->error);
+    fl_print_format(macro_fll_program_s(024_for_the_parameter), print->to, print->set->error, print->set->error);
     fl_print_format(f_string_format_QQ_single_s.string, print->to, print->set->notable, symbol, name, print->set->notable);
-    fl_print_format("%[' is not a valid negative integer.%]%r", print->to, print->set->error, print->set->error, f_string_eol_s);
+    fl_print_format(macro_fll_program_s(028_not_valid_negative_integer), print->to, print->set->error, print->set->error, f_string_eol_s);
 
     f_file_stream_unlock(print->to);
 
@@ -332,11 +332,11 @@ extern "C" {
 
     f_file_stream_lock(print->to);
 
-    fl_print_format("%[%QThe value '%]", print->to, print->set->error, print->prefix, print->set->error);
+    fl_print_format(macro_fll_program_s(023_the_value), print->to, print->set->error, print->prefix, print->set->error);
     fl_print_format(f_string_format_Q_single_s.string, print->to, print->set->notable, value, print->set->notable);
-    fl_print_format("%[' for the parameter '%]", print->to, print->set->error, print->set->error);
+    fl_print_format(macro_fll_program_s(024_for_the_parameter), print->to, print->set->error, print->set->error);
     fl_print_format(f_string_format_QQ_single_s.string, print->to, print->set->notable, symbol, name, print->set->notable);
-    fl_print_format("%[' is not a valid positive integer.%]%r", print->to, print->set->error, print->set->error, f_string_eol_s);
+    fl_print_format(macro_fll_program_s(029_not_valid_positive_integer), print->to, print->set->error, print->set->error, f_string_eol_s);
 
     f_file_stream_unlock(print->to);
 
@@ -354,9 +354,9 @@ extern "C" {
 
     f_file_stream_lock(print->to);
 
-    fl_print_format("%[%QThe parameter%] ", print->to, print->set->error, print->prefix, print->set->error);
+    fl_print_format(macro_fll_program_s(021_the_parameter), print->to, print->set->error, print->prefix, print->set->error);
     fl_print_format(f_string_format_QQ_single_s.string, print->to, print->set->notable, symbol, name, print->set->notable);
-    fl_print_format(" %[is specified, but no value is given.%]%r", print->to, print->set->error, print->set->error, f_string_eol_s);
+    fl_print_format(macro_fll_program_s(030_specify_no_value), print->to, print->set->error, print->set->error, f_string_eol_s);
 
     f_file_stream_unlock(print->to);
 
@@ -374,11 +374,11 @@ extern "C" {
 
     f_file_stream_lock(print->to);
 
-    fl_print_format("%[%QThe parameter%] ", print->to, print->set->error, print->prefix, print->set->error);
+    fl_print_format(macro_fll_program_s(021_the_parameter), print->to, print->set->error, print->prefix, print->set->error);
     fl_print_format(f_string_format_QQ_single_s.string, print->to, print->set->notable, symbol, name, print->set->notable);
-    fl_print_format("%[ is specified, but%] ", print->to, print->set->error, print->set->error);
+    fl_print_format(macro_fll_program_s(031_specify_but), print->to, print->set->error, print->set->error);
     fl_print_format(f_string_format_Q_single_s.string, print->to, print->set->notable, amount, print->set->notable);
-    fl_print_format(" %[values are not given.%]%r", print->to, print->set->error, print->set->error, f_string_eol_s);
+    fl_print_format(macro_fll_program_s(032_value_not_given), print->to, print->set->error, print->set->error, f_string_eol_s);
 
     f_file_stream_unlock(print->to);
 
@@ -396,9 +396,9 @@ extern "C" {
 
     f_file_stream_lock(print->to);
 
-    fl_print_format("%[%QThe parameter '%]", print->to, print->set->error, print->prefix, print->set->error);
+    fl_print_format(macro_fll_program_s(033_the_parameter_single_quote), print->to, print->set->error, print->prefix, print->set->error);
     fl_print_format(f_string_format_QQ_single_s.string, print->to, print->set->notable, symbol, name, print->set->notable);
-    fl_print_format("%[' may only be specified once.%]%r", print->to, print->set->error, print->set->error, f_string_eol_s);
+    fl_print_format(macro_fll_program_s(034_only_specify_once), print->to, print->set->error, print->set->error, f_string_eol_s);
 
     f_file_stream_unlock(print->to);
 
@@ -416,9 +416,9 @@ extern "C" {
 
     f_file_stream_lock(print->to);
 
-    fl_print_format("%%[%QThe value '%]", print->to, print->set->error, print->prefix, print->set->error);
+    fl_print_format(macro_fll_program_s(023_the_value), print->to, print->set->error, print->prefix, print->set->error);
     fl_print_format(f_string_format_QQ_single_s.string, print->to, print->set->notable, symbol, value, print->set->notable);
-    fl_print_format("%[' may only be specified once for the parameter '%]", print->to, print->set->error, print->set->error);
+    fl_print_format(macro_fll_program_s(035_only_specify_once_parameter), print->to, print->set->error, print->set->error);
     fl_print_format(f_string_format_QQ_single_s.string, print->to, print->set->notable, symbol, name, print->set->notable);
     fl_print_format(f_string_format_sentence_end_single_quote_s.string, print->to, print->set->error, print->set->error, f_string_eol_s);
 
@@ -438,7 +438,7 @@ extern "C" {
 
     f_file_stream_lock(print->to);
 
-    fl_print_format("%[%QFailure while processing the parameter '%]", print->to, print->set->error, print->prefix, print->set->error);
+    fl_print_format(macro_fll_program_s(036_failure_process_paremeter), print->to, print->set->error, print->prefix, print->set->error);
     fl_print_format(f_string_format_QQ_single_s.string, print->to, print->set->notable, symbol, name, print->set->notable);
     fl_print_format(f_string_format_sentence_end_single_quote_s.string, print->to, print->set->error, print->set->error, f_string_eol_s);
 
@@ -458,11 +458,11 @@ extern "C" {
 
     f_file_stream_lock(print->to);
 
-    fl_print_format("%[%QThe start range value '%]", print->to, print->set->error, print->prefix, print->set->error);
+    fl_print_format(macro_fll_program_s(037_start_range_value), print->to, print->set->error, print->prefix, print->set->error);
     fl_print_format(f_string_format_Q_single_s.string, print->to, print->set->notable, value_start, print->set->notable);
-    fl_print_format("%[' may not be greater than the stop value '%]", print->to, print->set->error, print->set->error);
+    fl_print_format(macro_fll_program_s(038_not_greater_than_stop), print->to, print->set->error, print->set->error);
     fl_print_format(f_string_format_Q_single_s.string, print->to, print->set->notable, value_stop, print->set->notable);
-    fl_print_format("%[' for the parameter '%]", print->to, print->set->error, print->set->error);
+    fl_print_format(macro_fll_program_s(024_for_the_parameter), print->to, print->set->error, print->set->error);
     fl_print_format(f_string_format_QQ_single_s.string, print->to, print->set->notable, symbol, name, print->set->notable);
     fl_print_format(f_string_format_sentence_end_single_quote_s.string, print->to, print->set->error, print->set->error, f_string_eol_s);
 
@@ -482,9 +482,9 @@ extern "C" {
 
     f_file_stream_lock(print->to);
 
-    fl_print_format("%[%QThe parameter '%]", print->to, print->set->error, print->prefix, print->set->error);
+    fl_print_format(macro_fll_program_s(033_the_parameter_single_quote), print->to, print->set->error, print->prefix, print->set->error);
     fl_print_format(f_string_format_QQ_single_s.string, print->to, print->notable, symbol, name, print->notable);
-    fl_print_format("%[' is not supported.%]%r", print->to, print->set->error, print->set->error, f_string_eol_s);
+    fl_print_format(macro_fll_program_s(039_is_not_support), print->to, print->set->error, print->set->error, f_string_eol_s);
 
     f_file_stream_unlock(print->to);
 
@@ -502,9 +502,9 @@ extern "C" {
 
     f_file_stream_lock(print->to);
 
-    fl_print_format("%[%QThe value for the parameter '%]", print->to, print->set->error, print->prefix, print->set->error);
+    fl_print_format(macro_fll_program_s(040_value_for_parameter), print->to, print->set->error, print->prefix, print->set->error);
     fl_print_format(f_string_format_QQ_single_s.string, print->to, print->notable, symbol, name, print->notable);
-    fl_print_format("%[' is too long.%]%r", print->to, print->set->error, print->set->error, f_string_eol_s);
+    fl_print_format(macro_fll_program_s(041_is_too_long), print->to, print->set->error, print->set->error, f_string_eol_s);
 
     f_file_stream_unlock(print->to);
 
@@ -522,7 +522,7 @@ extern "C" {
 
     f_file_stream_lock(print->to);
 
-    fl_print_format("%[%QThe pipe has incorrectly placed form-feed characters (\\f).%]%r", print->to, print->set->error, print->prefix, print->set->error, f_string_eol_s);
+    fl_print_format(macro_fll_program_s(042_pipe_incorrect_form_feed), print->to, print->set->error, print->prefix, print->set->error, f_string_eol_s);
 
     f_file_stream_unlock(print->to);
 
@@ -540,7 +540,7 @@ extern "C" {
 
     f_file_stream_lock(print->to);
 
-    fl_print_format("%[%QThe pipe has no content.%]%r", print->to, print->set->error, print->prefix, print->set->error, f_string_eol_s);
+    fl_print_format(macro_fll_program_s(043_pipe_no_content), print->to, print->set->error, print->prefix, print->set->error, f_string_eol_s);
 
     f_file_stream_unlock(print->to);
 
@@ -558,7 +558,7 @@ extern "C" {
 
     f_file_stream_lock(print->to);
 
-    fl_print_format("%[%QThe pipe has an Object without Content.%]%r", print->to, print->set->error, print->prefix, print->set->error, f_string_eol_s);
+    fl_print_format(macro_fll_program_s(044_pipe_object_no_content), print->to, print->set->error, print->prefix, print->set->error, f_string_eol_s);
 
     f_file_stream_unlock(print->to);
 
@@ -572,10 +572,9 @@ extern "C" {
       if (!print) return F_status_set_error(F_parameter);
     #endif // _di_level_2_parameter_checking_
 
-    fl_print_format(" %[%Q%]%r", print->to, print->set->title, name, print->set->title, f_string_eol_s);
-    fl_print_format("  %[Version %Q%]%r%r", print->to, print->set->notable, version, print->set->notable, f_string_eol_s, f_string_eol_s);
-
-    fl_print_format(" %[Available Options:%] %r", print->to, print->set->important, print->set->important, f_string_eol_s);
+    fl_print_format(macro_fll_program_s(045_bold_q_r), print->to, print->set->title, name, print->set->title, f_string_eol_s);
+    fl_print_format(macro_fll_program_s(046_version_number), print->to, print->set->notable, version, print->set->notable, f_string_eol_s, f_string_eol_s);
+    fl_print_format(macro_fll_program_s(047_available_option), print->to, print->set->important, print->set->important, f_string_eol_s);
 
     return F_okay;
   }
@@ -587,7 +586,7 @@ extern "C" {
       if (!print) return F_status_set_error(F_parameter);
     #endif // _di_level_2_parameter_checking_
 
-    fl_print_format(" %[Operations:%]%r", print->to, print->set->important, print->set->important, f_string_eol_s);
+    fl_print_format(macro_fll_program_s(048_operation), print->to, print->set->important, print->set->important, f_string_eol_s);
 
     return F_okay;
   }
@@ -609,7 +608,7 @@ extern "C" {
       if (!print) return F_status_set_error(F_parameter);
     #endif // _di_level_2_parameter_checking_
 
-    fl_print_format("      %Q%[%Q%]%s%S%r", print->to, symbol_long, print->set->standout, option_long, print->set->standout, description ? "  " : "", description, f_string_eol_s);
+    fl_print_format(macro_fll_program_s(049_q_q_s_s), print->to, symbol_long, print->set->standout, option_long, print->set->standout, description ? "  " : "", description, f_string_eol_s);
 
     return F_okay;
   }
@@ -621,7 +620,7 @@ extern "C" {
       if (!print) return F_status_set_error(F_parameter);
     #endif // _di_level_2_parameter_checking_
 
-    fl_print_format("  %[%Q%]%s%S%r", print->to, print->set->standout, option_other, print->set->standout, description ? "  " : "", description, f_string_eol_s);
+    fl_print_format(macro_fll_program_s(050_q_s_s), print->to, print->set->standout, option_other, print->set->standout, description ? "  " : "", description, f_string_eol_s);
 
     return F_okay;
   }
@@ -633,7 +632,7 @@ extern "C" {
       if (!print) return F_status_set_error(F_parameter);
     #endif // _di_level_2_parameter_checking_
 
-    fl_print_format("  %Q%[%Q%]%s%S%r",print->to, symbol_short, print->set->standout, option_short, print->set->standout, description ? "  " : "", description, f_string_eol_s);
+    fl_print_format(macro_fll_program_s(051_q_q_s_s), print->to, symbol_short, print->set->standout, option_short, print->set->standout, description ? "  " : "", description, f_string_eol_s);
 
     return F_okay;
   }
@@ -645,17 +644,17 @@ extern "C" {
       if (!print) return F_status_set_error(F_parameter);
     #endif // _di_level_2_parameter_checking_
 
-    private_fll_program_print_help_option(print, f_console_standard_short_help_s, f_console_standard_long_help_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, "     Print this help message.");
-    private_fll_program_print_help_option(print, f_console_standard_short_copyright_s, f_console_standard_long_copyright_s, f_console_symbol_short_inverse_s, f_console_symbol_long_inverse_s, "Print the copyright.");
-    private_fll_program_print_help_option(print, f_console_standard_short_dark_s, f_console_standard_long_dark_s, f_console_symbol_short_inverse_s, f_console_symbol_long_inverse_s, "     Output using colors that show up better on dark backgrounds.");
-    private_fll_program_print_help_option(print, f_console_standard_short_light_s, f_console_standard_long_light_s, f_console_symbol_short_inverse_s, f_console_symbol_long_inverse_s, "    Output using colors that show up better on light backgrounds.");
-    private_fll_program_print_help_option(print, f_console_standard_short_no_color_s, f_console_standard_long_no_color_s, f_console_symbol_short_inverse_s, f_console_symbol_long_inverse_s, " Do not print using color.");
-    private_fll_program_print_help_option(print, f_console_standard_short_quiet_s, f_console_standard_long_quiet_s, f_console_symbol_short_inverse_s, f_console_symbol_long_inverse_s, "    Decrease verbosity, silencing most print messages.");
-    private_fll_program_print_help_option(print, f_console_standard_short_error_s, f_console_standard_long_error_s, f_console_symbol_short_inverse_s, f_console_symbol_long_inverse_s, "    Decrease verbosity, using only error message when printing.");
-    private_fll_program_print_help_option(print, f_console_standard_short_normal_s, f_console_standard_long_normal_s, f_console_symbol_short_inverse_s, f_console_symbol_long_inverse_s, "   Set verbosity to normal, printing messages normally.");
-    private_fll_program_print_help_option(print, f_console_standard_short_verbose_s, f_console_standard_long_verbose_s, f_console_symbol_short_inverse_s, f_console_symbol_long_inverse_s, "  Increase verbosity beyond normal, printing more details.");
-    private_fll_program_print_help_option(print, f_console_standard_short_debug_s, f_console_standard_long_debug_s, f_console_symbol_short_inverse_s, f_console_symbol_long_inverse_s, "    Enable debugging, significantly increase verbosity beyond normal, print a lot more details.");
-    private_fll_program_print_help_option(print, f_console_standard_short_version_s, f_console_standard_long_version_s, f_console_symbol_short_inverse_s, f_console_symbol_long_inverse_s, "  Print only the program version number and immediately exit.");
+    private_fll_program_print_help_option(print, f_console_standard_short_help_s, f_console_standard_long_help_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, macro_fll_program_s(052_print_help));
+    private_fll_program_print_help_option(print, f_console_standard_short_copyright_s, f_console_standard_long_copyright_s, f_console_symbol_short_inverse_s, f_console_symbol_long_inverse_s, macro_fll_program_s(053_print_copyright));
+    private_fll_program_print_help_option(print, f_console_standard_short_dark_s, f_console_standard_long_dark_s, f_console_symbol_short_inverse_s, f_console_symbol_long_inverse_s, macro_fll_program_s(054_output_color_dark));
+    private_fll_program_print_help_option(print, f_console_standard_short_light_s, f_console_standard_long_light_s, f_console_symbol_short_inverse_s, f_console_symbol_long_inverse_s, macro_fll_program_s(055_output_color_light));
+    private_fll_program_print_help_option(print, f_console_standard_short_no_color_s, f_console_standard_long_no_color_s, f_console_symbol_short_inverse_s, f_console_symbol_long_inverse_s, macro_fll_program_s(056_no_print_color));
+    private_fll_program_print_help_option(print, f_console_standard_short_quiet_s, f_console_standard_long_quiet_s, f_console_symbol_short_inverse_s, f_console_symbol_long_inverse_s, macro_fll_program_s(057_quiet_verbose));
+    private_fll_program_print_help_option(print, f_console_standard_short_error_s, f_console_standard_long_error_s, f_console_symbol_short_inverse_s, f_console_symbol_long_inverse_s, macro_fll_program_s(058_error_verbose));
+    private_fll_program_print_help_option(print, f_console_standard_short_normal_s, f_console_standard_long_normal_s, f_console_symbol_short_inverse_s, f_console_symbol_long_inverse_s, macro_fll_program_s(059_normal_verbose));
+    private_fll_program_print_help_option(print, f_console_standard_short_verbose_s, f_console_standard_long_verbose_s, f_console_symbol_short_inverse_s, f_console_symbol_long_inverse_s, macro_fll_program_s(060_verbose_verbose));
+    private_fll_program_print_help_option(print, f_console_standard_short_debug_s, f_console_standard_long_debug_s, f_console_symbol_short_inverse_s, f_console_symbol_long_inverse_s, macro_fll_program_s(061_debug_verbose));
+    private_fll_program_print_help_option(print, f_console_standard_short_version_s, f_console_standard_long_version_s, f_console_symbol_short_inverse_s, f_console_symbol_long_inverse_s, macro_fll_program_s(062_print_version));
 
     return F_okay;
   }
@@ -667,7 +666,7 @@ extern "C" {
       if (!print) return F_status_set_error(F_parameter);
     #endif // _di_level_2_parameter_checking_
 
-    fl_print_format(" %[Special Options:%]%r", print->to, print->set->important, print->set->important, f_string_eol_s);
+    fl_print_format(macro_fll_program_s(063_special_option), print->to, print->set->important, print->set->important, f_string_eol_s);
 
     return F_okay;
   }
@@ -679,13 +678,13 @@ extern "C" {
       if (!print) return F_status_set_error(F_parameter);
     #endif // _di_level_2_parameter_checking_
 
-    fl_print_format(" %[Usage:%]%r", print->to, print->set->important, print->set->important, f_string_eol_s);
+    fl_print_format(macro_fll_program_s(064_usage), print->to, print->set->important, print->set->important, f_string_eol_s);
 
-    fl_print_format("  %[%Q%]", print->to, print->set->standout, name, print->set->standout);
-    fl_print_format(" %[[%] options %[]%]", print->to, print->set->notable, print->set->notable, print->set->notable, print->set->notable);
+    fl_print_format(macro_fll_program_s(065_q), print->to, print->set->standout, name, print->set->standout);
+    fl_print_format(macro_fll_program_s(066_option), print->to, print->set->notable, print->set->notable, print->set->notable, print->set->notable);
 
     if (parameters.used) {
-      fl_print_format(" %[[%] %Q %[]%]", print->to, print->set->notable, print->set->notable, parameters, print->set->notable, print->set->notable);
+      fl_print_format(macro_fll_program_s(067_q_bracket), print->to, print->set->notable, print->set->notable, parameters, print->set->notable, print->set->notable);
     }
 
     f_print_dynamic_raw(f_string_eol_s, print->to);
@@ -709,7 +708,7 @@ extern "C" {
     // Must flush and reset color because the interrupt may have interrupted the middle of a print function.
     f_file_stream_flush(print->to);
 
-    fl_print_format("%]\n%[Received signal code %]", print->to, print->set->reset, print->set->warning, print->set->warning);
+    fl_print_format(macro_fll_program_s(068_receive_signal), print->to, print->set->reset, print->set->warning, print->set->warning);
     fl_print_format(f_string_format_u_single_s.string, print->to, print->set->notable, signal, print->set->notable);
     fl_print_format(f_string_format_sentence_end_single_s.string, print->to, print->set->warning, print->set->warning, f_string_eol_s);
 
diff --git a/level_2/fll_program/c/program/string.c b/level_2/fll_program/c/program/string.c
new file mode 100644 (file)
index 0000000..7666a12
--- /dev/null
@@ -0,0 +1,84 @@
+#include "../program.h"
+#include "../private-program.h"
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#ifndef _di_fll_program_s_a_
+  const f_string_t fll_program_s_a[] = {
+    "Copyright © %Q.%r",
+    "%rThis program comes with ABSOLUTELY NO WARRANTY.%r",
+    "This is free software, and you are welcome to modify or redistribute in accordance to the license.%r",
+    "%rSource code license lgpl-2.1-or-later.%r",
+    "Standard and specification license open-standard-license-1.0-or-greater.%r",
+    "Documentation license cc-by-sa-4.0.%r",
+    "%[%QThe%] ",
+    "%[ is missing or has a length of%] ",
+    "%[0%]",
+    "%[%QThe '%]",
+    "%[' parameter and the '%]",
+    "%[' parameter must be specified the same number of times.%]%r",
+    "%[' parameter must be specified the same number of times when not specifying the '%]",
+    "%[' parameter.%]%r",
+    "%[%QCannot specify the '%]",
+    "%[' parameter with the '%]",
+    "%[' parameter without the '%]",
+    "%[' when processing a pipe.%]%r",
+    "%[' parameter only allows either the '%]",
+    "%[' parameter or the '%]",
+    "%[' parameter, but not both.%]%r",
+    "%[%QThe parameter%] ",
+    " %[is specified as an empty string, but an empty string is not allowed.%]%r",
+    "%[%QThe value '%]",
+    "%[' for the parameter '%]",
+    "%[' must not be less than %]",
+    "%[' must not be more than %]",
+    "%[' is not a valid integer.%]%r",
+    "%[' is not a valid negative integer.%]%r",
+    "%[' is not a valid positive integer.%]%r",
+    " %[is specified, but no value is given.%]%r",
+    "%[ is specified, but%] ",
+    " %[values are not given.%]%r",
+    "%[%QThe parameter '%]",
+    "%[' may only be specified once.%]%r",
+    "%[' may only be specified once for the parameter '%]",
+    "%[%QFailure while processing the parameter '%]",
+    "%[%QThe start range value '%]",
+    "%[' may not be greater than the stop value '%]",
+    "%[' is not supported.%]%r",
+    "%[%QThe value for the parameter '%]",
+    "%[' is too long.%]%r",
+    "%[%QThe pipe has incorrectly placed form-feed characters (\\f).%]%r",
+    "%[%QThe pipe has no content.%]%r",
+    "%[%QThe pipe has an Object without Content.%]%r",
+    " %[%Q%]%r",
+    "  %[Version %Q%]%r%r",
+    " %[Available Options:%] %r",
+    " %[Operations:%]%r",
+    "      %Q%[%Q%]%s%S%r",
+    "  %[%Q%]%s%S%r",
+    "  %Q%[%Q%]%s%S%r",
+    "     Print this help message.",
+    "Print the copyright.",
+    "     Output using colors that show up better on dark backgrounds.",
+    "    Output using colors that show up better on light backgrounds.",
+    " Do not print using color.",
+    "    Decrease verbosity, silencing most print messages.",
+    "    Decrease verbosity, using only error message when printing.",
+    "   Set verbosity to normal, printing messages normally.",
+    "  Increase verbosity beyond normal, printing more details.",
+    "    Enable debugging, significantly increase verbosity beyond normal, print a lot more details.",
+    "  Print only the program version number and immediately exit.",
+    " %[Special Options:%]%r",
+    " %[Usage:%]%r",
+    "  %[%Q%]",
+    " %[[%] options %[]%]",
+    " %[[%] %Q %[]%]",
+    "%]\n%[Received signal code %]",
+  };
+#endif // _di_fll_program_s_a_
+
+#ifdef __cplusplus
+} // extern "C"
+#endif
diff --git a/level_2/fll_program/c/program/string.h b/level_2/fll_program/c/program/string.h
new file mode 100644 (file)
index 0000000..b8b663d
--- /dev/null
@@ -0,0 +1,116 @@
+/**
+ * FLL - Level 2
+ *
+ * Project: Program
+ * API Version: 0.7
+ * Licenses: lgpl-2.1-or-later
+ *
+ * Defines common data to be used for/by project program.
+ *
+ * This is auto-included by program.h and should not need to be explicitly included.
+ */
+#ifndef _FLL_program_string_h
+#define _FLL_program_string_h
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/**
+ * A special array of strings intended for centralizing hard-coded strings.
+ *
+ * The macro macro_fll_program_s() is used to reference the array index by the enum name.
+ *
+ * macro_fll_program_s():
+ *   - name: A name hinting at the message.
+ */
+#ifndef _di_fll_program_s_a_
+  extern const f_string_t fll_program_s_a[];
+
+  #define macro_fll_program_s(name) fll_program_s_a[fll_program_s_##name##_e]
+#endif // _di_fll_program_s_a_
+
+/**
+ * An enum representing specific indexes within the above array.
+ *
+ * This is a convenience enum used to make code slightly more readable.
+ */
+#ifndef _di_fll_program_s_e_
+  enum {
+    fll_program_s_000_copyright_e,
+    fll_program_s_001_no_warranty_e,
+    fll_program_s_002_free_modify_e,
+    fll_program_s_003_source_license_e,
+    fll_program_s_004_specification_license_e,
+    fll_program_s_005_documentation_license_e,
+    fll_program_s_006_the_e,
+    fll_program_s_007_missing_or_length_e,
+    fll_program_s_008_zero_e,
+    fll_program_s_009_the_single_quote_e,
+    fll_program_s_010_parameter_and_the_e,
+    fll_program_s_011_parameter_same_times_e,
+    fll_program_s_012_parameter_same_times_not_specify_e,
+    fll_program_s_013_single_quote_parameter_period_e,
+    fll_program_s_014_cannot_specify_e,
+    fll_program_s_015_parameter_with_the_e,
+    fll_program_s_016_parameter_without_the_e,
+    fll_program_s_017_when_process_pipe_e,
+    fll_program_s_018_parameter_only_allows_either_e,
+    fll_program_s_019_parameter_or_the_e,
+    fll_program_s_020_parameter_not_both_e,
+    fll_program_s_021_the_parameter_e,
+    fll_program_s_022_specify_empty_not_allow_e,
+    fll_program_s_023_the_value_e,
+    fll_program_s_024_for_the_parameter_e,
+    fll_program_s_025_not_be_less_than_e,
+    fll_program_s_026_not_be_more_than_e,
+    fll_program_s_027_not_valid_integer_e,
+    fll_program_s_028_not_valid_negative_integer_e,
+    fll_program_s_029_not_valid_positive_integer_e,
+    fll_program_s_030_specify_no_value_e,
+    fll_program_s_031_specify_but_e,
+    fll_program_s_032_value_not_given_e,
+    fll_program_s_033_the_parameter_single_quote_e,
+    fll_program_s_034_only_specify_once_e,
+    fll_program_s_035_only_specify_once_parameter_e,
+    fll_program_s_036_failure_process_paremeter_e,
+    fll_program_s_037_start_range_value_e,
+    fll_program_s_038_not_greater_than_stop_e,
+    fll_program_s_039_is_not_support_e,
+    fll_program_s_040_value_for_parameter_e,
+    fll_program_s_041_is_too_long_e,
+    fll_program_s_042_pipe_incorrect_form_feed_e,
+    fll_program_s_043_pipe_no_content_e,
+    fll_program_s_044_pipe_object_no_content_e,
+    fll_program_s_045_bold_q_r_e,
+    fll_program_s_046_version_number_e,
+    fll_program_s_047_available_option_e,
+    fll_program_s_048_operation_e,
+    fll_program_s_049_q_q_s_s_e,
+    fll_program_s_050_q_s_s_e,
+    fll_program_s_051_q_q_s_s_e,
+    fll_program_s_052_print_help_e,
+    fll_program_s_053_print_copyright_e,
+    fll_program_s_054_output_color_dark_e,
+    fll_program_s_055_output_color_light_e,
+    fll_program_s_056_no_print_color_e,
+    fll_program_s_057_quiet_verbose_e,
+    fll_program_s_058_error_verbose_e,
+    fll_program_s_059_normal_verbose_e,
+    fll_program_s_060_verbose_verbose_e,
+    fll_program_s_061_debug_verbose_e,
+    fll_program_s_062_print_version_e,
+    fll_program_s_063_special_option_e,
+    fll_program_s_064_usage_e,
+    fll_program_s_065_q_e,
+    fll_program_s_066_option_e,
+    fll_program_s_067_q_bracket_e,
+    fll_program_s_068_receive_signal_e,
+  }; // enum
+#endif // _di_fll_program_s_e_
+
+#ifdef __cplusplus
+} // extern "C"
+#endif
+
+#endif // _FLL_program_string_h
index 8a2187396bf530addebeca6c2169762d3c171d9b..e64481176deca2c41321325af1e65e2921a7bb54 100644 (file)
@@ -36,9 +36,9 @@ build_language c
 build_libraries -lc
 build_libraries-individual -lfl_print -lf_color -lf_console -lf_conversion -lf_file -lf_rip -lf_memory -lf_print -lf_signal -lf_string -lf_type_array -lf_utf
 
-build_sources_library program.c program/common.c program/print.c private-program.c
+build_sources_library program.c program/common.c program/print.c program/string.c private-program.c
 
-build_sources_headers program.h program/common.h program/print.h
+build_sources_headers program.h program/common.h program/print.h program/string.h
 
 build_script yes
 build_shared yes