_CP_print_n

_CP_print_n is equivalent to the print string BASIC statement.

Syntax

int _CP_print_n(CPSTR* string)

Description

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

NOTE

The environment must be set to _CP_pick_env() for this function to work properly.

Example(s)

CPSTR * t = _CP_mkstr("b");

_CP_print_n(t);

See Also

C Functions Overview, _CP_mkstr