home *** CD-ROM | disk | FTP | other *** search
/ Carousel / CAROUSEL.cdr / mactosh / unix / unxbin.sha / unrun.c < prev    next >
Encoding:
C/C++ Source or Header  |  1986-04-02  |  169 b   |  17 lines

  1. /*
  2.  * remove run length problems
  3.  */
  4.  
  5. #include <stdio.h>
  6.  
  7. main()
  8. {
  9.     int c;
  10.     while ( (c = getchar()) != EOF )
  11.     {
  12.         putchar( c );
  13.         if ( c == 0x90 )
  14.             putchar( 0 );
  15.     }
  16. }
  17.