| 482 | int dir_inside_of(const char *subdir, const char *dir); |
| 483 | |
| 484 | static inline int is_dot_or_dotdot(const char *name) |
| 485 | { |
| 486 | return (name[0] == '.' && |
| 487 | (name[1] == '\0' || |
| 488 | (name[1] == '.' && name[2] == '\0'))); |
| 489 | } |
| 490 | |
| 491 | int is_empty_dir(const char *dir); |
| 492 |
no outgoing calls
no test coverage detected