#CR/LF only?
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