_CP_field_store

_CP_field_store


_CP_field Index Level _CP_filelock
Syntax int _CP_field_store(CPSTR** result, CPSTR* string1, CPSTR* string2, int expression1, int expression2)
Category C Interface
Type C Function
Description equivalent to the FlashBASIC statement: result[string2, 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 "zdhidz"

CPSTR * s = _CP_mkstr("zdabdz");
CPSTR * t = _CP_mkstr("d");
CPSTR * u = _CP_mkstr("hi");

_CP_field_store(&s,u,t,2,1);
_CP_print(s);
Warnings
Compatibility AP 6.1
_CP_field Index Level _CP_filelock