# _CP_match

_CP_match is equivalent to the `*result* = *string1* match *string2*` BASIC statement.

## Syntax

```
int _CP_match(int* result, CPSTR* string1, CPSTR* string2)
```

## Description

This function returns -1 if
an error occurs. The error code is contained in _CP_errno.

## Example(s)

```
/* 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

- [C functions overview](https://d3codex.com/cfunctions/c-functions-overview/)

---
Source: https://d3codex.com/cfunctions/cp-match/ - part of the D3Codex reference.
