- typedef basic_filebuf<char> filebuf;
- typedef basic_filebuf<wchar_t> wfilebuf;
- typedef basic_ifstream<char> ifstream;
- typedef basic_ifstream<wchar_t> wifstream;
- typedef basic_ofstream<char> ofstream;
- typedef basic_ofstream<wchar_t> wofstream;
A
FILE refers to the type
FILE as defined in the Standard C Library and provides an external input or output stream with the underlying type o
fchar or
byte. A stream is a sequence of
char or
bytes.