_CP_space

_CP_space


_CP_soundex Index Level _CP_sr_
Syntax int _CP_space(CPSTR** result, int expression)
Category C Interface
Type C Function
Description equivalent to the FlashBASIC statement: result = space(expression)

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 "   ".

CPSTR * s = _CP_str_null;

_CP_space(&s,3);
_CP_print(s);
Warnings
Compatibility AP 6.1
_CP_soundex Index Level _CP_sr_