diff options
author | Vicent Martà <vicent@github.com> | 2013-01-16 15:52:58 -0800 |
---|---|---|
committer | Vicent Martà <vicent@github.com> | 2013-01-16 15:52:58 -0800 |
commit | 34a4ad46e8ff306dca989bb591dc415e38480064 (patch) | |
tree | b84359af2edebcb1444aea931a4d76dab97ef622 /src/tree.h | |
parent | 4b45675d7c014719cf5d46870f6d369eb08d0b1c (diff) | |
parent | fffe429a20b68677cae940ba8a9a0ff60056d6c0 (diff) | |
download | libgit2-34a4ad46e8ff306dca989bb591dc415e38480064.tar.gz |
Merge pull request #1211 from arrbee/fix-icase-status-file
Fix case insensitivity issues in git_status_file
Diffstat (limited to 'src/tree.h')
-rw-r--r-- | src/tree.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tree.h b/src/tree.h index 6f05f5a7a..27afd4fd4 100644 --- a/src/tree.h +++ b/src/tree.h @@ -39,6 +39,8 @@ GIT_INLINE(bool) git_tree_entry__is_tree(const struct git_tree_entry *e) return (S_ISDIR(e->attr) && !S_ISGITLINK(e->attr)); } +extern int git_tree_entry_icmp(const git_tree_entry *e1, const git_tree_entry *e2); + void git_tree__free(git_tree *tree); int git_tree__parse(git_tree *tree, git_odb_object *obj); |