git_attr_foreach_cb

The callback used with git_attr_foreach.

This callback will be invoked only once per attribute name, even if there are multiple rules for a given file. The highest priority rule will be used.

@see git_attr_foreach.

extern (C) nothrow @nogc
alias git_attr_foreach_cb = int function
(
const(char)* name
,
const(char)* value
,
void* payload
)

Return Value

0 to continue looping, non-zero to stop. This value will be returned from git_attr_foreach.

Meta