diff options
author | Russell Belfer <rb@github.com> | 2012-04-13 15:00:29 -0700 |
---|---|---|
committer | Russell Belfer <rb@github.com> | 2012-04-13 15:00:29 -0700 |
commit | 14a513e05866721f5ceba18cf425568d2f6af143 (patch) | |
tree | 4c31553a2c971adf579d2c5c287749ce45949c8c /include/git2/common.h | |
parent | d1f331564da9d6110b80b538a501da0c66e59142 (diff) | |
download | libgit2-14a513e05866721f5ceba18cf425568d2f6af143.tar.gz |
Add support for pathspec to diff and status
This adds preliminary support for pathspecs to diff and status.
The implementation is not very optimized (it still looks at
every single file and evaluated the the pathspec match against
them), but it works.
Diffstat (limited to 'include/git2/common.h')
-rw-r--r-- | include/git2/common.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/git2/common.h b/include/git2/common.h index 170ef340..9186fe54 100644 --- a/include/git2/common.h +++ b/include/git2/common.h @@ -87,6 +87,7 @@ typedef struct { } git_strarray; GIT_EXTERN(void) git_strarray_free(git_strarray *array); +GIT_EXTERN(int) git_strarray_copy(git_strarray *tgt, const git_strarray *src); /** * Return the version of the libgit2 library |