StringToInt
Docslocal retval, outInteger = StringToInt(string)Description
Returns false if it's a null or empty string or if the string is too long. outInteger will be set to -999 in that case.
If all checks have passed successfully, the return value will be set to whatever strtol(string, 0i64, 10); returns.Parameters
| Name | Type | Description |
|---|---|---|
string | char* | — |
outInteger | int* | — |
Returns
BOOLReturns TRUE (1) or FALSE (0).