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

Function git_parse_int64

parse.c:101–108  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

99}
100
101int git_parse_int64(const char *value, int64_t *ret)
102{
103 intmax_t tmp;
104 if (!git_parse_signed(value, &tmp, maximum_signed_value_of_type(int64_t)))
105 return 0;
106 *ret = tmp;
107 return 1;
108}
109
110int git_parse_uint(const char *value, unsigned int *ret)
111{

Callers 2

git_config_int64Function · 0.85
format_config_int64Function · 0.85

Calls 1

git_parse_signedFunction · 0.85

Tested by

no test coverage detected