Return true if F refers to a directory. */
| 3631 | |
| 3632 | /* Return true if F refers to a directory. */ |
| 3633 | static bool |
| 3634 | is_directory (const struct fileinfo *f) |
| 3635 | { |
| 3636 | return f->filetype == directory || f->filetype == arg_directory; |
| 3637 | } |
| 3638 | |
| 3639 | /* Return true if F refers to a (symlinked) directory. */ |
| 3640 | static bool |
no outgoing calls
no test coverage detected