Using platform-specific function will be faster if anything is indeed faster. For example, read() and write() under Linux. Do a board/MSDN search, perhaps, for the equivalent Windows functions.

The C functions like getc() might be faster too, I don't know. You'd have to do some experimenting. They don't involve stream objects, and getc() is actually implemented as a macro, so I would think it might be faster.