| _CP_out_msg | Index Level | _CP_page |
| Syntax | int _CP_ovly_subs(CPSTR** result, CPSTR* string1, int expression1, int expression2) |
| Category | C Interface |
| Type | C Function |
| Description |
equivalent to the FlashBASIC statement: result[expression1, expression2] = string1
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 "hicdef" */
CPSTR * s = _CP_mkstr("abcdef"); CPSTR * u = _CP_mkstr("hi"); _CP_ovly_subs(&s,u,2,1); _CP_print(s); |
| Warnings | |
| Compatibility | AP 6.1 |
| _CP_out_msg | Index Level | _CP_page |