| 690 | /* Write the end-of-line delimiter if appropriate for the current line. */ |
| 691 | |
| 692 | static inline void |
| 693 | maybe_write_line_delim (bool found_any_selected_field, uintmax_t field_idx) |
| 694 | { |
| 695 | if (found_any_selected_field |
| 696 | || !(suppress_non_delimited && field_idx == 1)) |
| 697 | write_line_delim (); |
| 698 | } |
| 699 | |
| 700 | /* Return TRUE if FIELD_IDX is selected, |
| 701 | and write the output delimiter if appropriate. */ |
no test coverage detected