| 453 | } |
| 454 | |
| 455 | static inline int is_null_oid(const struct object_id *oid) |
| 456 | { |
| 457 | static const unsigned char null_hash[GIT_MAX_RAWSZ]; |
| 458 | return !memcmp(oid->hash, null_hash, GIT_MAX_RAWSZ); |
| 459 | } |
| 460 | |
| 461 | const char *empty_tree_oid_hex(const struct git_hash_algo *algop); |
| 462 |
no outgoing calls
no test coverage detected