builtin/show: do not prune by pathspec
[git/mjg.git] / name-hash.h
blob0cbfc4286316b244a0902c7fffd1168ba320d52f
1 #ifndef NAME_HASH_H
2 #define NAME_HASH_H
4 struct cache_entry;
5 struct index_state;
8 int index_dir_find(struct index_state *istate, const char *name, int namelen,
9 struct strbuf *canonical_path);
11 #define index_dir_exists(i, n, l) index_dir_find((i), (n), (l), NULL)
13 void adjust_dirname_case(struct index_state *istate, char *name);
14 struct cache_entry *index_file_exists(struct index_state *istate, const char *name, int namelen, int igncase);
16 int test_lazy_init_name_hash(struct index_state *istate, int try_threaded);
17 void add_name_hash(struct index_state *istate, struct cache_entry *ce);
18 void remove_name_hash(struct index_state *istate, struct cache_entry *ce);
19 void free_name_hash(struct index_state *istate);
21 #endif /* NAME_HASH_H */