| 387 | } |
| 388 | |
| 389 | static inline int oidcmp(const struct object_id *oid1, const struct object_id *oid2) |
| 390 | { |
| 391 | return memcmp(oid1->hash, oid2->hash, GIT_MAX_RAWSZ); |
| 392 | } |
| 393 | |
| 394 | static inline int oideq(const struct object_id *oid1, const struct object_id *oid2) |
| 395 | { |
no outgoing calls