| _CP_casing | Index Level | _CP_clearfile |
| Syntax | int _CP_cat(CPSTR** result, CPSTR* string1, CPSTR* string2) |
| Category | C Interface |
| Type | C Function |
| Description |
is equivalent to the FlashBASIC statement: result = string1:string2
This function returns -1 if an error occurs. The error code is contained in _CP_errno. |
| Options | |
| See Also | C Functions introduction |
| Example |
CPSTR * s = _CP_mkstr("a");
CPSTR * t = _CP_mkstr("A"); _CP_unix_env(); _CP_cat(&s,s,t); _CP_TERM(s); printf("%s\n",_CP_SADDR(s)); |
| Warnings | |
| Compatibility | AP 6.1 |
| _CP_casing | Index Level | _CP_clearfile |