git_oid_fmt

Format a git_oid into a hex string.

extern (C) nothrow @nogc
int
git_oid_fmt
(
char* out_
,
const(.git_oid)* id
)

Parameters

out_ char*

output hex string; must be pointing at the start of the hex sequence and have at least the number of bytes needed for an oid encoded in hex (40 bytes). Only the oid digits are written; a '\\0' terminator must be added by the caller if it is required.

id const(.git_oid)*

oid structure to format.

Return Value

Type: int

0 on success or error code

Meta