1 2 3 4 5 6 7 8 9 10 11 12 13 14
#include <stdio.h> int w32getc(FILE *f) { int c; c = getc(f); if(c=='\r') { c = getc(f); if(c!='\n') { ungetc(c,f); c='\r'; } } return c; }