pathspec: add copy_pathspec
[git] / pathspec.h
1 #ifndef PATHSPEC_H
2 #define PATHSPEC_H
3
4 #define PATHSPEC_ONESTAR 1      /* the pathspec pattern sastisfies GFNM_ONESTAR */
5
6 struct 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
20 extern int init_pathspec(struct pathspec *, const char **);
21 extern void copy_pathspec(struct pathspec *dst, const struct pathspec *src);
22 extern void free_pathspec(struct pathspec *);
23
24 extern int limit_pathspec_to_literal(void);
25
26 extern char *find_pathspecs_matching_against_index(const char **pathspec);
27 extern void add_pathspec_matches_against_index(const char **pathspec, char *seen, int specs);
28 extern const char *check_path_for_gitlink(const char *path);
29 extern void die_if_path_beyond_symlink(const char *path, const char *prefix);
30
31 #endif /* PATHSPEC_H */