home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Collection - Online Library - January 1996 / CKITOS2196.ISO / diskette / gg244090.dsk / unc.dsk / UTILS / AIXTOOS2.C next >
C/C++ Source or Header  |  1993-08-05  |  368b  |  25 lines

  1. /* usage =  AIXTOOS2 <filein >fileout  */
  2.  
  3. #include "stdio.h"
  4.  
  5.  
  6. main(int argc, char *argv[], char *envp[])
  7. {
  8.   int c;
  9.  
  10. #ifdef IBMOS2
  11.   freopen("","rb",stdin);
  12.   freopen("","wb",stdout);
  13. #endif
  14.  
  15.   while( (c = fgetc(stdin)) != EOF)  {
  16.     if ( c == '\n' ) {
  17.        fputc('\r',stdout);
  18.     } /* endif */
  19.     fputc(c,stdout);
  20.   } /* endwhile */
  21.   fputc(0x1A,stdout);
  22.  
  23. }
  24.  
  25.