# _CP_break

_CP_break is equivalent to the `break *expression*` BASIC statement.

## Syntax

```
int _CP_break(int expression)
```

## Description

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

## Example(s)

```
/* turn the break off */
_CP_break(0);
```

## See also

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

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