libgit2

git_oid_pathfmt

Version:

Format a git_oid into a loose-object path string.

The resulting string is "aa/...", where "aa" is the first two hex digits of the oid and "..." is the remaining 38 digits.

Signature

int git_oid_pathfmt(char *out, const git_oid *id);

Parameters

char *
In
out

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 (41 bytes for SHA1, 65 bytes for SHA256). Only the oid digits are written; a '
0' terminator must be added by the caller if it is required.

In
id

oid structure to format.

Returns

int

0 on success, non-zero callback return value, or error code

Versions