summaryrefslogtreecommitdiff
path: root/Build/source/utils/pmx/pmx-2.6.18/w32getc.c
blob: 32f9d625953184dd542566484b4707439d8f7ba9 (plain)
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;
}