diff options
author | Philip Kelley <phkelley@hotmail.com> | 2012-09-17 15:42:41 -0400 |
---|---|---|
committer | Philip Kelley <phkelley@hotmail.com> | 2012-09-17 15:42:41 -0400 |
commit | ec40b7f99f7f7161b0a1b24f1d8a934ec0eaacb1 (patch) | |
tree | 59744c10038258c3993a4eb1b1dfc3896c35b97a /src/vector.h | |
parent | e8776d30f7edb570f435cf746d712c696b862bdd (diff) | |
download | libgit2-ec40b7f99f7f7161b0a1b24f1d8a934ec0eaacb1.tar.gz |
Support for core.ignorecase
Diffstat (limited to 'src/vector.h')
-rw-r--r-- | src/vector.h | 1 |
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); |