home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Carousel Volume 2 #1
/
carousel.iso
/
mactosh
/
unix
/
unxbin.sha
/
unrun.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1986-04-02
|
169 b
|
17 lines
/*
* remove run length problems
*/
#include <stdio.h>
main()
{
int c;
while ( (c = getchar()) != EOF )
{
putchar( c );
if ( c == 0x90 )
putchar( 0 );
}
}