From 790c6c95fe12051f7f7b32df5f4fba316872fddb Mon Sep 17 00:00:00 2001 From: Marc Pegon Date: Mon, 6 Jun 2011 11:55:48 +0200 Subject: Added methods to search objects of different types given an OID prefix. --- include/git2/commit.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'include/git2/commit.h') diff --git a/include/git2/commit.h b/include/git2/commit.h index 3687d9460..cf14cd937 100644 --- a/include/git2/commit.h +++ b/include/git2/commit.h @@ -53,6 +53,24 @@ GIT_INLINE(int) git_commit_lookup(git_commit **commit, git_repository *repo, con return git_object_lookup((git_object **)commit, repo, id, GIT_OBJ_COMMIT); } +/** + * Lookup a commit object from a repository, + * given a prefix of its identifier (short id). + * + * @see git_object_lookup_prefix + * + * @param commit pointer to the looked up commit + * @param repo the repo to use when locating the commit. + * @param id identity of the commit to locate. If the object is + * an annotated tag it will be peeled back to the commit. + * @param len the length of the short identifier + * @return 0 on success; error code otherwise + */ +GIT_INLINE(int) git_commit_lookup_prefix(git_commit **commit, git_repository *repo, const git_oid *id, unsigned len) +{ + return git_object_lookup_prefix((git_object **)commit, repo, id, len, GIT_OBJ_COMMIT); +} + /** * Close an open commit * -- cgit v1.2.1