git_blob_lookup_prefix

Lookup a blob object from a repository, given a prefix of its identifier (short id).

@see git_object_lookup_prefix

extern (C) nothrow @nogc
int
git_blob_lookup_prefix

Parameters

blob libgit2_d.types.git_blob**

pointer to the looked up blob

repo libgit2_d.types.git_repository*

the repo to use when locating the blob.

id const(libgit2_d.oid.git_oid)*

identity of the blob to locate.

len size_t

the length of the short identifier

Return Value

Type: int

0 or an error code

Meta