| 264 | } |
| 265 | |
| 266 | void git_hash_clone(struct git_hash_ctx *dst, const struct git_hash_ctx *src) |
| 267 | { |
| 268 | src->algop->clone_fn(dst, src); |
| 269 | } |
| 270 | |
| 271 | void git_hash_update(struct git_hash_ctx *ctx, const void *in, size_t len) |
| 272 | { |
no outgoing calls
no test coverage detected