home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / diverses / cc / cc02 / ccstrip.c < prev    next >
Encoding:
C/C++ Source or Header  |  1985-08-28  |  233 b   |  14 lines

  1. /* ccstrip: strip non-graphic characters */
  2.  
  3. #include <stdio.h>
  4.  
  5. main()
  6. {
  7.       int   c;
  8.  
  9.       while ((c = getchar()) != EOF)
  10.      if ((c >= ' ' && c < '\177') || c == '\t' || c == '\n')
  11.         putchar(c);
  12.       exit(0);
  13. }
  14.