diff options
author | Matthew Bowen <matthew@mgbowen.com> | 2014-03-05 21:49:23 -0500 |
---|---|---|
committer | Matthew Bowen <matthew@mgbowen.com> | 2014-03-05 21:49:23 -0500 |
commit | b9f819978c571cc806827e8b3ebc1a58a0755999 (patch) | |
tree | 64c94ef334360b064a3bdf9b6069c1422f727150 /include/git2/diff.h | |
parent | a064dc2d0b6206116a35be4b62c58c3c1170d5de (diff) | |
download | libgit2-b9f819978c571cc806827e8b3ebc1a58a0755999.tar.gz |
Added function-based initializers for every options struct.
The basic structure of each function is courtesy of arrbee.
Diffstat (limited to 'include/git2/diff.h')
-rw-r--r-- | include/git2/diff.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/include/git2/diff.h b/include/git2/diff.h index 943e2ec4c..f855f52ba 100644 --- a/include/git2/diff.h +++ b/include/git2/diff.h @@ -377,6 +377,19 @@ typedef struct { {GIT_DIFF_OPTIONS_VERSION, 0, GIT_SUBMODULE_IGNORE_DEFAULT, {NULL,0}, NULL, NULL, 3} /** +* Initializes a `git_diff_options` with default values. Equivalent to +* creating an instance with GIT_DIFF_OPTIONS_INIT. +* +* @param opts the `git_diff_options` instance to initialize. +* @param version the version of the struct; you should pass +* `GIT_DIFF_OPTIONS_VERSION` here. +* @return Zero on success; -1 on failure. +*/ +GIT_EXTERN(int) git_diff_init_options( + git_diff_options* opts, + int version); + +/** * When iterating over a diff, callback that will be made per file. * * @param delta A pointer to the delta data for the file @@ -604,6 +617,19 @@ typedef struct { #define GIT_DIFF_FIND_OPTIONS_VERSION 1 #define GIT_DIFF_FIND_OPTIONS_INIT {GIT_DIFF_FIND_OPTIONS_VERSION} +/** +* Initializes a `git_diff_find_options` with default values. Equivalent to +* creating an instance with GIT_DIFF_FIND_OPTIONS_INIT. +* +* @param opts the `git_diff_find_options` instance to initialize. +* @param version the version of the struct; you should pass +* `GIT_DIFF_FIND_OPTIONS_VERSION` here. +* @return Zero on success; -1 on failure. +*/ +GIT_EXTERN(int) git_diff_find_init_options( + git_diff_find_options* opts, + int version); + /** @name Diff Generator Functions * * These are the functions you would use to create (or destroy) a |