| _CP_sr_ | Index Level | _CP_str0 |
| Syntax | int _CP_str(CPSTR** result, CPSTR* string, int expression) |
| Category | C Interface |
| Type | C Function |
| Description |
equivalent to the FlashBASIC statement: result = str(string, expression)
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 "aaa".
CPSTR * s = _CP_mkstr("a"); _CP_str(&s,s,3); _CP_print(s); |
| Warnings | |
| Compatibility | AP 6.1 |
| _CP_sr_ | Index Level | _CP_str0 |