cfunc.field_store
Pick/BASIC 'field store' functionality from C.
Syntax
int _CP_field_store(CPSTR** result, CPSTR* string1, CPSTR* string2, int expression1, int expression2)
Description
equivalent to the Pick/BASIC statement: result[string2, expression1, expression2] = string1
This function returns -1 if an error occurs. The error code is contained in _CP_errno.
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);
See Also
User Comments
What do you think?
Share your experience or ask a question by using the form below.
Login to leave your comments.
