C
int FSputc( char c, FSFILE * file );
Description
This is a helper function for FSfprintf. It will write one character to a file.
Preconditions
This function should not be called by the user.
Parameters
Parameters |
Description |
c |
The character to write to the file. |
file |
The file to write to. |
Return Values
Return Values |
Description |
0 |
The character was written successfully |
The character was not written to the file. |
Side Effects
None
Remarks
None