Convert string to python long. Roughly, parses format
space* sign? space* Integer ('l'|'L')? Null
Integer: '0' ('x'|'X') HexDigits '0' OctalDigits DecimalDigits
null-terminated string to convert.
if not null, return pointer to the terminating null character.
base in which string integer is encoded. possible values are 8, 10, 16, or 0 to autodetect base.
See Implementation
Convert string to python long. Roughly, parses format
space* sign? space* Integer ('l'|'L')? Null
Integer: '0' ('x'|'X') HexDigits '0' OctalDigits DecimalDigits