| 3864 | for the NAME associated with the passed fileinfo F. */ |
| 3865 | |
| 3866 | static size_t |
| 3867 | fileinfo_name_width (struct fileinfo const *f) |
| 3868 | { |
| 3869 | return f->width |
| 3870 | ? f->width |
| 3871 | : quote_name_width (f->name, filename_quoting_options, f->quoted); |
| 3872 | } |
| 3873 | |
| 3874 | static int |
| 3875 | cmp_width (struct fileinfo const *a, struct fileinfo const *b, |
no test coverage detected