Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Kelley <phkelley@hotmail.com>2013-03-02 00:44:18 +0400
committerPhilip Kelley <phkelley@hotmail.com>2013-03-02 00:46:21 +0400
commit3f0d0c85d06f0d5ff9ba469c6ab523bfddcc710b (patch)
tree40812383a2ae1d05788c71974d31eb86ca12ba99 /src/index.h
parent426b2e2fce17b09203f00e013e173328f50fd9e8 (diff)
Disable ignore_case when writing the index to a tree
Diffstat (limited to 'src/index.h')
-rw-r--r--src/index.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/index.h b/src/index.h
index 9304b5539..7fc138dc8 100644
--- a/src/index.h
+++ b/src/index.h
@@ -48,6 +48,8 @@ extern size_t git_index__prefix_position(git_index *index, const char *path);
extern int git_index_entry__cmp(const void *a, const void *b);
extern int git_index_entry__cmp_icase(const void *a, const void *b);
+extern void git_index_set_ignore_case(git_index *index, bool ignore_case);
+
extern int git_index_read_tree_match(
git_index *index, git_tree *tree, git_strarray *strspec);