1 .TH fss_identify_print_error_parameter_file_name_invalid "3" "January 2026" "FLL - FSS Identify 0.8.0" "Program Functions"
3 fss_identify_print_error_parameter_file_name_invalid \-
8 \fBf_status_t fss_identify_print_error_parameter_file_name_invalid\fP(
9 \fBfl_print_t *const \fP\fIprint\fP,
10 \fBconst f_number_unsigned_t \fP\fIindex\fP,
11 \fBconst f_string_static_t \fP\fIname\fP
16 Print error message for when the file parameter is invalid.
18 F_output_not (with error bit) if setting is NULL.
22 The output structure to print to.
26 The index within the argv[] array where the empty string is found.
30 The parameter name value string that is invalid.
37 Structure for facilitating colored or other managed printing.
39 custom: A pointer to a data structure determined by some caller for more advanced manipulation.
46 uint8_t \fIverbosity\fP;
48 f_string_static_t \fIprefix\fP;
49 f_string_static_t \fIsuffix\fP;
50 f_color_set_t \fIcontext\fP;
51 f_color_set_t \fInotable\fP;
52 f_color_set_context_t *\fIset\fP;
62 A string that is analogous to f_string_dynamic_t but intended for static-only uses.
64 The f_string_static_t type should always have size set to 0 to represent that it is a static string. This allows for easier integration with f_string_dynamic_t.
66 If size is set to some value other than 0 for a static string, then take special care not to intermix it with f_string_dynamic_t.
68 A special macro_f_string_static_t_initialize_1() is provided to easily initialize a static string. A special macro_f_string_static_t_initialize_2() is provided to easily initialize a static string with an identical used and size.
70 size: Total amount of space available.
75 struct f_string_static_t {
76 f_string_t \fIstring\fP;
77 f_number_unsigned_t \fIused\fP;
78 f_number_unsigned_t \fIsize\fP;
85 F_okay on success. F_output_not on success, but no printing is performed.
90 \fIerror.h\fP(3), \fIfss_identify_print_error\fP(3), \fIfss_identify_print_error_file\fP(3), \fIfss_identify_print_error_no_from\fP(3), \fIfss_identify_print_error_parameter_file_name_empty\fP(3), \fIfss_identify_print_error_parameter_file_name_invalid\fP(3), \fIf_file_stream_lock()\fP, \fIf_file_stream_unlock()\fP, \fIfl_print_format()\fP
97 Copyright \(co 2007-2026 Kevin Day, GNU LGPL Version 2.1 or later.