| 3818 | } |
| 3819 | |
| 3820 | static int |
| 3821 | cmp_btime (struct fileinfo const *a, struct fileinfo const *b, |
| 3822 | int (*cmp) (char const *, char const *)) |
| 3823 | { |
| 3824 | int diff = timespec_cmp (get_stat_btime (&b->stat), |
| 3825 | get_stat_btime (&a->stat)); |
| 3826 | return diff ? diff : cmp (a->name, b->name); |
| 3827 | } |
| 3828 | |
| 3829 | static int |
| 3830 | off_cmp (off_t a, off_t b) |
nothing calls this directly
no test coverage detected