![]() |
|
|
+ Search |
![]()
|
May 15th, 2000 20:43
Nathan Wallace, Mark Roedel, Richard Lynch
If you're just ending each line with a "\n", you might try changing that
to "\r\n". Just like in C, the \n is a newline, or linefeed (LF), while
the \r is a carriage return (CR).
So, you'll need to use something like:
fwrite("...\r\n");
or
fputs("...\r");
to get the \r in there for DOS.