MCPcopy Index your code
hub / github.com/git/git / git_parse_uint

Function git_parse_uint

parse.c:110–117  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

108}
109
110int git_parse_uint(const char *value, unsigned int *ret)
111{
112 uintmax_t tmp;
113 if (!git_parse_unsigned(value, &tmp, maximum_unsigned_value_of_type(unsigned int)))
114 return 0;
115 *ret = tmp;
116 return 1;
117}
118
119int git_parse_ulong(const char *value, unsigned long *ret)
120{

Callers 1

git_config_uintFunction · 0.85

Calls 1

git_parse_unsignedFunction · 0.85

Tested by

no test coverage detected