5 * We maintain three exclude pattern lists:
6 * EXC_CMDL lists patterns explicitly given on the command line.
7 * EXC_DIRS lists patterns obtained from per-directory ignore files.
8 * EXC_FILE lists patterns from fallback ignore files.
17 char name
[FLEX_ARRAY
]; /* more */
32 unsigned int show_ignored
:1,
33 show_other_directories
:1,
34 hide_empty_directories
:1;
35 struct dir_entry
**entries
;
38 const char *exclude_per_dir
;
39 struct exclude_list exclude_list
[3];
42 extern int common_prefix(const char **pathspec
);
43 extern int match_pathspec(const char **pathspec
, const char *name
, int namelen
, int prefix
, char *seen
);
45 extern int read_directory(struct dir_struct
*, const char *path
, const char *base
, int baselen
);
46 extern int excluded(struct dir_struct
*, const char *);
47 extern void add_excludes_from_file(struct dir_struct
*, const char *fname
);
48 extern void add_exclude(const char *string
, const char *base
,
49 int baselen
, struct exclude_list
*which
);
50 extern int file_exists(const char *);