MCPcopy Create free account
hub / github.com/git/git / parse_oid_hex_algop_impl

Function parse_oid_hex_algop_impl

hex.c:58–66  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

56}
57
58int 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
68int parse_oid_hex_any(const char *hex, struct object_id *oid, const char **end)
69{

Callers

nothing calls this directly

Calls 1

get_oid_hex_algopFunction · 0.85

Tested by

no test coverage detected