a621676db832d3d7d6c00abc6e162af87dd299c4
1#ifndef PATHSPEC_H
2#define PATHSPEC_H
3
4#define PATHSPEC_ONESTAR 1 /* the pathspec pattern sastisfies GFNM_ONESTAR */
5
6struct pathspec {
7 const char **raw; /* get_pathspec() result, not freed by free_pathspec() */
8 int nr;
9 unsigned int has_wildcard:1;
10 unsigned int recursive:1;
11 int max_depth;
12 struct pathspec_item {
13 const char *match;
14 int len;
15 int nowildcard_len;
16 int flags;
17 } *items;
18};
19
20extern int init_pathspec(struct pathspec *, const char **);
21extern void copy_pathspec(struct pathspec *dst, const struct pathspec *src);
22extern void free_pathspec(struct pathspec *);
23
24extern int limit_pathspec_to_literal(void);
25
26extern char *find_pathspecs_matching_against_index(const char **pathspec);
27extern void add_pathspec_matches_against_index(const char **pathspec, char *seen, int specs);
28extern const char *check_path_for_gitlink(const char *path);
29extern void die_if_path_beyond_symlink(const char *path, const char *prefix);
30
31#endif /* PATHSPEC_H */