
------------------------------------------------------------------------------
6.10 Print formatted data to a stream. <Main,Alarm,Comm>
------------------------------------------------------------------------------
[Name]
fprintf
[Syntax]
#include <stdio.h>
int fprintf( FILE *stream, const char *format [, argument]... ) ;
[Arguments]
stream Pointer to a FILE structure.
format Format control string.
argument Optional arguments.
[Return]
Returns number of characters which have been output. If any error,
returns negative value.
[Description]
Outputs a series of formatted data to a stream. Each arguments
(if exist) are output with conversion according to the format
specification in "format". Formats of "format" are same as ones of
"printf". See "printf" for details of "format" and "argument".