| 376 | } |
| 377 | |
| 378 | static inline void hashcpy(unsigned char *sha_dst, const unsigned char *sha_src, |
| 379 | const struct git_hash_algo *algop) |
| 380 | { |
| 381 | memcpy(sha_dst, sha_src, algop->rawsz); |
| 382 | } |
| 383 | |
| 384 | static inline void hashclr(unsigned char *hash, const struct git_hash_algo *algop) |
| 385 | { |
no outgoing calls
no test coverage detected