git_config_parse_int32

Parse a string value as an int32.

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_int32
(
int* out_
,
const(char)* value
)

Parameters

out_ int*

place to store the result of the parsing

value const(char)*

value to parse

Meta