| 461 | const char *empty_tree_oid_hex(const struct git_hash_algo *algop); |
| 462 | |
| 463 | static inline int is_empty_blob_oid(const struct object_id *oid, |
| 464 | const struct git_hash_algo *algop) |
| 465 | { |
| 466 | return oideq(oid, algop->empty_blob); |
| 467 | } |
| 468 | |
| 469 | static inline int is_empty_tree_oid(const struct object_id *oid, |
| 470 | const struct git_hash_algo *algop) |
no test coverage detected