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

Function git_parse_ssize_t

parse.c:128–135  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

126}
127
128int git_parse_ssize_t(const char *value, ssize_t *ret)
129{
130 intmax_t tmp;
131 if (!git_parse_signed(value, &tmp, maximum_signed_value_of_type(ssize_t)))
132 return 0;
133 *ret = tmp;
134 return 1;
135}
136
137int git_parse_double(const char *value, double *ret)
138{

Callers 3

git_config_ssize_tFunction · 0.85
fsck_set_msg_typeFunction · 0.85
get_content_lengthFunction · 0.85

Calls 1

git_parse_signedFunction · 0.85

Tested by

no test coverage detected