Class Summary |
__FlsBuf |
This function is implemented by riscose as:
ARM_SET_R0(putc(ARM_R0, clib_file_real(ARM_R1))); |
FClose |
This function closes the file stream pointed to by stream. |
FEof |
This functions tests to see if the end of the specified file stream has been reached. |
FFlush |
This function causes any buffered output data to be written to the file pointed to by a1, but only if the last
operation on the file was not input. |
FGetC |
This function reads a single character from the stream pointed to by stream and returns it as an int. |
FGetS |
This function reads a string of characters from the stream in a3 into the character array pointed to by a1. |
FilePointer |
This class is a representation of a C file pointer. |
FOpen |
This function attempts to open the file specified in a1 for random access according to the mode in a2 . |
FPrintF |
This function writes output to the stream a1 under control of the format string a2. |
FPutC |
This function writes the character in a1 to the stream specified in a2. |
FPutS |
This function writes the string pointed to by a1 to the stream specified in a2. |
FRead |
This function reads a3 objects of size specified by a2 into the array pointed to by a1, from the stream pointed to by a4. |
FScanF |
This function reads input from the stream in a1 under control of the format string in a2. |
FSeek |
This function sets the file position indicator for the file pointed to by a1. |
FTell |
This function reads the file position indicator for the file pointed to by stream. |
FWrite |
This function writes a3 objects of size specified by a2 from the array pointed to by a1, into the file
pointed to by a4. |
GetC |
This function reads a single character from the stream pointed to by stream and returns it as an int. |
PrintF |
This function writes output to stdout under control of the format string in a1. |
PutC |
This function writes the character in a1 to the stream specified in a2. |
PutChar |
This function writes the character in a1 to stdout. |
PutS |
This function writes the string pointed to by a1, followed by a newline, to stdout . |
Remove |
This function attempts to remove the file whose name is contained in a1. |
Rewind |
This function sets the file pointer for the stream to the beginning of the file. |
SPrintF |
This function writes output into the string pointed to by out under control of the format string . |
SScanF |
This function reads input from the string pointed to by a1 under control of the format string in a2. |
TmpNam |
The function generates a original (ie not used for an exisiting file) filename. |
VSPrintF |
This function is identical to sprintf, but the arguments are replaced by a3, which should have been initialised
by va_start. |