git_config_parse_int64

Parse a string value as an int64.

An optional value suffix of 'k', 'm', or 'g' will cause the value to be multiplied by 1024, 1048576, or 1073741824 prior to output.

extern (C) nothrow @nogc
int
git_config_parse_int64
(
long* out_
,
const(char)* value
)

Parameters

out_ long*

place to store the result of the parsing

value const(char)*

value to parse

Meta