move struct pathspec and related functions to pathspec.[ch]
[alt-git.git] / pathspec.h
blob788406885fb35634788663e449feb75e3b8d3708
1 #ifndef PATHSPEC_H
2 #define PATHSPEC_H
4 #define PATHSPEC_ONESTAR 1 /* the pathspec pattern sastisfies GFNM_ONESTAR */
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;
20 extern int init_pathspec(struct pathspec *, const char **);
21 extern void free_pathspec(struct pathspec *);
23 extern int limit_pathspec_to_literal(void);
25 extern char *find_pathspecs_matching_against_index(const char **pathspec);
26 extern void add_pathspec_matches_against_index(const char **pathspec, char *seen, int specs);
27 extern const char *check_path_for_gitlink(const char *path);
28 extern void die_if_path_beyond_symlink(const char *path, const char *prefix);
30 #endif /* PATHSPEC_H */