MicrOS
|
#include "../stdio.h"
Functions | |
FILE * | __stdio_create_stream () |
Creates new stream. More... | |
file_mode | __stdio_get_file_mode (const char *str_mode) |
Parses file mode. More... | |
Variables | |
FILE * | stdin |
Standard input (default is keyboard). More... | |
FILE * | stdout |
Standard output (default is console). More... | |
FILE * | stderr |
Standard error output (default is console). More... | |
FILE* __stdio_create_stream | ( | ) |
Creates new stream.
Creates new stream (not assigned to any file or device) and returns it.
file_mode __stdio_get_file_mode | ( | const char * | str_mode | ) |
Parses file mode.
Parses file mode in string format (eg. r+) and returns corresponding enum.
FILE* stderr |
Standard error output (default is console).
FILE* stdin |
Standard input (default is keyboard).
FILE* stdout |
Standard output (default is console).