diff options
author | brian m. carlson <sandals@crustytoothpaste.net> | 2015-11-10 02:22:19 +0000 |
---|---|---|
committer | Jeff King <peff@peff.net> | 2015-11-20 08:02:05 -0500 |
commit | b419aa25d5622268f515b26e76420eb2dd89e7e6 (patch) | |
tree | d508c65143f4a0680786a57c68fc5f12dfbb9935 /sha1_file.c | |
parent | 0c83680e9c047170614fb08ef222ea4f460e514d (diff) | |
download | git-b419aa25d5622268f515b26e76420eb2dd89e7e6.tar.gz |
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 <sandals@crustytoothpaste.net>
Signed-off-by: Jeff King <peff@peff.net>
Diffstat (limited to 'sha1_file.c')
-rw-r--r-- | sha1_file.c | 5 |
1 files changed, 5 insertions, 0 deletions
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; |