cfunc.match
Pick/BASIC 'match' functionality from C.
Syntax
int _CP_match(int* result, CPSTR* string1, CPSTR* string2)
Description
equivalent to the Pick/BASIC statement: result = string1 match string2
This function returns -1 if an error occurs. The error code is contained in _CP_errno.
Example
/* The following example prints '1'. */
CPSTR * s = _CP_mkstr('a1c');
CPSTR * t = _CP_mkstr('1a1n1a');
int i;
_CP_match(&i,s,t);
_CP_unix_env();
printf('%d\n', i);
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.
