cnfCreat

Create a temporary C string and return a pointer to it

Description:

Create a temporary C string and return a pointer to it. The space allocated to the C string is ‘length’ characters and is initialized to the null string.

Invocation

pointer = cnfCreat( length )

Arguments

int length (Given)
The length of the space to be allocated in characters.

Returned Value

char cnfCreat
A pointer to the storage that has been allocated by this routine.

Notes: