| _CP_substr | Index Level | _CP_system |
| Syntax | int _CP_sum(CPSTR** result, CPSTR* string) |
| Category | C Interface |
| Type | C Function |
| Description |
equivalent to the FlashBASIC statement: result = sum(string)
This function returns -1 if an error occurs. The error code is contained in _CP_errno. |
| Options | |
| See Also | C Functions introduction |
| Example |
The following example prints "3".
CPSTR * s = _CP_mkstr("1\3762"); _CP_sum(&s,s); _CP_print(s); |
| Warnings | |
| Compatibility | AP 6.1 |
| _CP_substr | Index Level | _CP_system |