]> git.ipfire.org Git - thirdparty/git.git/blame - name-hash.h
perl: bump the required Perl version to 5.8.1 from 5.8.0
[thirdparty/git.git] / name-hash.h
CommitLineData
f5653856
EN
1#ifndef NAME_HASH_H
2#define NAME_HASH_H
3
4struct cache_entry;
5struct index_state;
6
7int index_dir_exists(struct index_state *istate, const char *name, int namelen);
8void adjust_dirname_case(struct index_state *istate, char *name);
9struct cache_entry *index_file_exists(struct index_state *istate, const char *name, int namelen, int igncase);
10
11int test_lazy_init_name_hash(struct index_state *istate, int try_threaded);
12void add_name_hash(struct index_state *istate, struct cache_entry *ce);
13void remove_name_hash(struct index_state *istate, struct cache_entry *ce);
14void free_name_hash(struct index_state *istate);
15
16#endif /* NAME_HASH_H */