#include <stdio.h>
int fprintf (
FILE* stream, /* file stream to write to */
const char* format, /* format string */
...); /* additional arguments */
Description
The function fprintf writes a string to a data stream. The
parameter stream is a pointer defining the data
stream. The parameter format is a pointer defining
the format for the output. The rules correspond to the standard
printf formatting string. The optional arguments are
converted and output according to the corresponding format
specifications in format.
The function is included in the library RL-FlashFS. The prototype
is defined in the file stdio.h.
Arm’s Privacy Policy has been updated. By continuing to use our site, you consent to Arm’s Privacy Policy. Please review our Privacy Policy to learn more about our collection, use and transfers of your data.