libgit2

git_attr_options_init

Version:

Initialize git_attr_options structure

Initialize a git_attr_options with default values. Equivalent to creating an instance with GIT_ATTR_OPTIONS_INIT.

Signature

int git_attr_options_init(git_attr_options *opts, unsigned int version);

Parameters

In
opts

The git_attr_options struct to initialize.

unsigned int
In
version

The struct version; pass GIT_ATTR_OPTIONS_VERSION

Returns

int

0 on success or -1 on failure.

Versions