| 236 | } |
| 237 | |
| 238 | const char *empty_tree_oid_hex(const struct git_hash_algo *algop) |
| 239 | { |
| 240 | static char buf[GIT_MAX_HEXSZ + 1]; |
| 241 | return oid_to_hex_r(buf, algop->empty_tree); |
| 242 | } |
| 243 | |
| 244 | const struct git_hash_algo *hash_algo_ptr_by_number(uint32_t algo) |
| 245 | { |
no test coverage detected