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>2012-09-17 23:42:41 +0400
committerPhilip Kelley <phkelley@hotmail.com>2012-09-17 23:42:41 +0400
commitec40b7f99f7f7161b0a1b24f1d8a934ec0eaacb1 (patch)
tree59744c10038258c3993a4eb1b1dfc3896c35b97a /src/vector.h
parente8776d30f7edb570f435cf746d712c696b862bdd (diff)
Support for core.ignorecase
Diffstat (limited to 'src/vector.h')
-rw-r--r--src/vector.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/vector.h b/src/vector.h
index f75e634ba..49ba754f0 100644
--- a/src/vector.h
+++ b/src/vector.h
@@ -24,6 +24,7 @@ typedef struct git_vector {
int git_vector_init(git_vector *v, size_t initial_size, git_vector_cmp cmp);
void git_vector_free(git_vector *v);
void git_vector_clear(git_vector *v);
+int git_vector_dup(git_vector *v, git_vector *src, git_vector_cmp cmp);
void git_vector_swap(git_vector *a, git_vector *b);
void git_vector_sort(git_vector *v);