| 400 | const struct object_id *b); |
| 401 | |
| 402 | static inline void oidcpy(struct object_id *dst, const struct object_id *src) |
| 403 | { |
| 404 | memcpy(dst->hash, src->hash, GIT_MAX_RAWSZ); |
| 405 | dst->algo = src->algo; |
| 406 | } |
| 407 | |
| 408 | static inline void oidread(struct object_id *oid, const unsigned char *hash, |
| 409 | const struct git_hash_algo *algop) |
no outgoing calls