f_status_t private_fll_program_print_help_option(fl_print_t * const print, const f_string_static_t option_short, const f_string_static_t option_long, const f_string_static_t symbol_short, const f_string_static_t symbol_long, const char * const description) {
fl_print_format(" %Q%[%Q%]", print->to, symbol_short, print->set->standout, option_short, print->set->standout);
- fl_print_format(", %Q%[%Q%] %S%r", print->to, symbol_long, print->set->standout, option_long, print->set->standout, description, f_string_eol_s);
+ 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);
return F_okay;
}
if (!print) return F_status_set_error(F_parameter);
#endif // _di_level_2_parameter_checking_
- fl_print_format(" %Q%[%Q%] %S%r", print->to, symbol_long, print->set->standout, option_long, print->set->standout, description, f_string_eol_s);
+ 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);
return F_okay;
}
if (!print) return F_status_set_error(F_parameter);
#endif // _di_level_2_parameter_checking_
- fl_print_format(" %[%Q%] %S%r", print->to, print->set->standout, option_other, print->set->standout, description, f_string_eol_s);
+ fl_print_format(" %[%Q%]%s%S%r", print->to, print->set->standout, option_other, print->set->standout, description ? " " : "", description, f_string_eol_s);
return F_okay;
}
if (!print) return F_status_set_error(F_parameter);
#endif // _di_level_2_parameter_checking_
- fl_print_format(" %Q%[%Q%] %S%r", print->to, symbol_short, print->set->standout, option_short, print->set->standout, description, f_string_eol_s);
+ 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);
return F_okay;
}
* @param description
* A desciption associated with the option.
*
+ * Set too NULL to disable.
+ *
* @return
* F_okay on success.
* F_output_not on success, but no printing is performed.
* @param description
* A desciption associated with the option.
*
+ * Set too NULL to disable.
+ *
* @return
* F_okay on success.
* F_output_not on success, but no printing is performed.
* @param description
* A desciption associated with the option.
*
+ * Set too NULL to disable.
+ *
* @return
* F_okay on success.
* F_output_not on success, but no printing is performed.
* @param description
* A desciption associated with the option.
*
+ * Set too NULL to disable.
+ *
* @return
* F_okay on success.
* F_output_not on success, but no printing is performed.