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/repository.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/repository.h')
| -rw-r--r-- | include/git2/repository.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/git2/repository.h b/include/git2/repository.h index bf12c7a69..4433e71a2 100644 --- a/include/git2/repository.h +++ b/include/git2/repository.h @@ -268,6 +268,19 @@ typedef struct { #define GIT_REPOSITORY_INIT_OPTIONS_INIT {GIT_REPOSITORY_INIT_OPTIONS_VERSION} /** + * Initializes a `git_repository_init_options` with default values. Equivalent + * to creating an instance with GIT_REPOSITORY_INIT_OPTIONS_INIT. + * + * @param opts the `git_repository_init_options` instance to initialize. + * @param version the version of the struct; you should pass + * `GIT_REPOSITORY_INIT_OPTIONS_VERSION` here. + * @return Zero on success; -1 on failure. + */ +GIT_EXTERN(int) git_repository_init_init_options( + git_repository_init_options* opts, + int version); + +/** * Create a new Git repository in the given folder with extended controls. * * This will initialize a new git repository (creating the repo_path |
