Parse an integer value from the provided string.
The string is inspected for a sign and an optional radix prefix. A radix may be provided as an argument instead, whereupon it must match the prefix (where present). When radix is set to zero, conversion will default to decimal.
char type of string
string to parse
receives parsed integer
specifies which radix to interpret the string as
true if parsing succeeded
See Implementation
Parse an integer value from the provided string.
The string is inspected for a sign and an optional radix prefix. A radix may be provided as an argument instead, whereupon it must match the prefix (where present). When radix is set to zero, conversion will default to decimal.