int FntPrint (
int id ,
char *format,
...
)
|
Arguments
id |
Print stream ID |
format |
Print format string |
Return Value
The number of characters in the stream is returned.
Explanation
The character string specified as an argument is formatted and sent as
output to the specified print stream. Formatting is performed according
to format and is identical to the specification of the format string
for the C library printf() function.
Notes
The character string is not displayed until FntFlush()
is executed.
Print formatted output to the standard output stream.
|