Convert a text string to an integer
int SLatoi(unsigned char *str
SLatoi
parses the string str
to interpret it as an
integer value. Unlike atoi
, SLatoi
can also parse
strings containing integers expressed in
hexidecimal (e.g., "0x7F"
) and octal (e.g., "012"
.)
notation.
SLang_guess_type