The private function in fll_error should not descrribe itself as an implementation of itself.
Remove the pointer from f_string_constant_t in the comments.
Fix typo in f_console "strictly".
* For example, a "+D +D" means more debug output than simply "+D".
*
* The verbosity interpretation used as the default for many of the level 3 programs in this process, is to treat verbosity modes as a scale from quiet to debug with quiet as the least verbose and debug as the most verbose.
- * This is not stricly a requirement, but expect level 3 projects to work this way.
+ * This is not strictly a requirement, but expect level 3 projects to work this way.
*
* The following options are subjective in interpretation of the verbosity but are expected to be follow the general interpretation:
* - debug: Enable debugging, which will likely increase output verbosity.
* GCC errors such as: "warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]" can be avoided using this.
*
* Do not confuse this with "const f_string_static_t".
- * When "const f_string_static_t * xxx" is passed to a function, then "xxx" cannot be changed.
- * When "f_string_constant_t * xxx" is passed to a function, then "xxx" can be changed.
+ * When "const f_string_static_t xxx" is passed to a function, then "xxx" cannot be changed.
+ * When "f_string_constant_t xxx" is passed to a function, then "xxx" can be changed.
*/
#ifndef _di_f_string_constant_t_
typedef const f_char_t *f_string_constant_t;
#endif
/**
- * Private implementation of private_fll_error_print().
+ * Private implementation of fll_error_print().
*
* Intended to be shared to each of the different implementation variations.
*