strtoll
Open topic with navigation CAPL Functions » General » Function Overview » strtollFunction Syntax
Description
Converts the string s to a 64bit integer. The number base is:- Hexadecimal if the string starts with ‘0x’
- Octal if it starts with ‘0’
- Decimal otherwise
Parameters
- s: String to be converted.
- result: Contains the converted value after the call. The value is 0 if the string can’t be converted to a number. It is the largest possible positive/negative number in case of overflow.
- startIndex: Position in s where the conversion shall begin.
Return Values
- -2: If s is empty or startIndex is larger than strlen(s).
- -1: An overflow occurs.