_CP_match

_CP_match


_CP_logon Index Level _CP_mkstr
Syntax int _CP_match(int* result, CPSTR* string1, CPSTR* string2)
Category C Interface
Type C Function
Description equivalent to the FlashBASIC statement: result = string1 match string2

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 "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);
Warnings
Compatibility AP 6.1
_CP_logon Index Level _CP_mkstr