| 174 | enum ps_skip_worktree_action sw_action); |
| 175 | char *find_pathspecs_matching_skip_worktree(const struct pathspec *pathspec); |
| 176 | static inline int matches_skip_worktree(const struct pathspec *pathspec, |
| 177 | int item, char **seen_ptr) |
| 178 | { |
| 179 | if (!*seen_ptr) |
| 180 | *seen_ptr = find_pathspecs_matching_skip_worktree(pathspec); |
| 181 | return (*seen_ptr)[item]; |
| 182 | } |
| 183 | int match_pathspec_attrs(struct index_state *istate, |
| 184 | const char *name, int namelen, |
| 185 | const struct pathspec_item *item); |
no test coverage detected