| 56 | } |
| 57 | |
| 58 | int parse_oid_hex_algop_impl(const char *hex, struct object_id *oid, |
| 59 | const char **end, |
| 60 | const struct git_hash_algo *algop) |
| 61 | { |
| 62 | int ret = get_oid_hex_algop(hex, oid, algop); |
| 63 | if (!ret) |
| 64 | *end = hex + algop->hexsz; |
| 65 | return ret; |
| 66 | } |
| 67 | |
| 68 | int parse_oid_hex_any(const char *hex, struct object_id *oid, const char **end) |
| 69 | { |
nothing calls this directly
no test coverage detected