GCC program always opening files in text mode

2002-03-22 Thread Isaac . Pacht
I'm trying to open a file on windows in "text" mode (i.e., translate LF to CR/LF on output). But no matter how I open the file (fopen, ofstream, std::ofstream) it outputs only LF's (unless, of course, I output a "\r\n" pair explicitly). This is even though I am not specifying binary mode. >From

RE: GCC program always opening files in text mode

2002-03-22 Thread Isaac . Pacht
Thanks, adding "t" to fopen did help. But how do I specify text mode for an ofstream? "Robert Collins" <[EMAIL PROTECTED]> on 03/22/2002 09:53:12 AM To: <[EMAIL PROTECTED]>, <[EMAIL PROTECTED]> cc: Subject: RE: GCC program always opening files in text mode > -Original Message--