home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume22 / auth-utils / part01 / util / delcr.c < prev    next >
Encoding:
C/C++ Source or Header  |  1990-04-29  |  206 b   |  18 lines

  1. /* delcr.c version 1.0, 4/20/90. */
  2.  
  3. #include <stdio.h>
  4.  
  5. main()
  6. {
  7.  int ch;
  8.  
  9.  while ((ch = getchar()) != EOF)
  10.   {
  11.    if (ch != '\r')
  12.      putchar(ch);
  13.    if (ch == '\n')
  14.      fflush(stdout);
  15.   }
  16.  exit(0);
  17. }
  18.