CompuServe Messages

#CR/LF only?

    07-Dec-93 16:50:27
Sb: #38138-#CR/LF only?
Fm: Peter Wade 100265,2740
To: Andre Lackmann 76711,710
Hi Andre, Are you using the Lattice fopen function to open your file ? If so, you should specify mode B translation which does not expand linefeeds to linefeed+return. You do this by making the second character of the mode parameter a b. For example : file = fopen ( "myfile", "wb" ) ; /* Open for write in mode b */ file = fopen ( "myfile", "wb+" ) ; /* Open for append in mode b */ Hope this is of help Peter