Platform | End-of-line indicator | |||
---|---|---|---|---|
Description | ASCII | char | decimal | |
Unix | linefeed (newline) character | LF | \n | 10 |
Macintosh | carriage return character | CR | \r | 13 |
Windows | two character sequence | CR LF | \r\n | 10,13 |
This is certainly true when the input is coming from a file. However, if input is coming from stdin and if stdin is coming from the console keyboard then it should not be opened in binary mode, because that has the side effect of switching stdin into raw mode in which all characters are read one by one with no echo, and Ctrl-C and Ctrl-Z are disabled so you cannot signal EOF.
An implementation using old C code is shown below.
FILE *fp; char *filename; if (filename == "") { fp = stdin; #ifdef _WIN32 #ifndef O_BINARY #define O_BINARY 0 #endif if (isatty( fileno(stdin) ) == 0) setmode(fileno(stdin), O_BINARY); #endif } else fp = fopen( filename, "rb"); if (fp == NULL) { fprintf(stderr,"Cannot open file %s\n", filename); return(0); }