From: brian m. carlson Date: Tue, 10 Nov 2015 02:22:19 +0000 (+0000) Subject: sha1_file: introduce has_object_file helper. X-Git-Tag: v2.7.0-rc0~4^2~11 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b419aa25d5622268f515b26e76420eb2dd89e7e6;p=thirdparty%2Fgit.git sha1_file: introduce has_object_file helper. Add has_object_file, which is a wrapper around has_sha1_file, but for struct object_id. Signed-off-by: brian m. carlson Signed-off-by: Jeff King --- diff --git a/cache.h b/cache.h index 736abc03a4..614040e700 100644 --- a/cache.h +++ b/cache.h @@ -1030,6 +1030,9 @@ static inline int has_sha1_file(const unsigned char *sha1) return has_sha1_file_with_flags(sha1, 0); } +/* Same as the above, except for struct object_id. */ +extern int has_object_file(const struct object_id *oid); + /* * Return true iff an alternate object database has a loose object * with the specified name. This function does not respect replace diff --git a/sha1_file.c b/sha1_file.c index 3d56746a9b..27ce7b705e 100644 --- a/sha1_file.c +++ b/sha1_file.c @@ -3216,6 +3216,11 @@ int has_sha1_file_with_flags(const unsigned char *sha1, int flags) return find_pack_entry(sha1, &e); } +int has_object_file(const struct object_id *oid) +{ + return has_sha1_file(oid->hash); +} + static void check_tree(const void *buf, size_t size) { struct tree_desc desc;