Function Name: Print Char

Definition

Translates the given CHAR into a buffer that is suitable for printing.

Returns

static buffer, containing error message if value is out of range;
otherwise, buffer is set to the string name equivalent to value.

Note that if you want to keep the results of this function, you must
copy them out of the pointer that is returned, because the contents of
the buffer will be overwritten the next time this function is called.

Prototype


extern const char *
SRM_PrintChar
(
CHAR value (notes)
);

Parameters Notes

value

CHAR to be processed

Prev: Print CMY Data. Next: Print Color Data. Up:Index.