git_index_conflict_next

Returns the current conflict (ancestor, ours and theirs entry) and advance the iterator internally to the next value.

extern (C) nothrow @nogc
int
git_index_conflict_next

Parameters

ancestor_out const(.git_index_entry)**

Pointer to store the ancestor side of the conflict

our_out const(.git_index_entry)**

Pointer to store our side of the conflict

their_out const(.git_index_entry)**

Pointer to store their side of the conflict

Return Value

Type: int

0 (no error), git_error_code.GIT_ITEROVER (iteration is done) or an error code (negative value)

Meta