home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CP/M
/
CPM_CDROM.iso
/
beehive
/
compress
/
unsitcpm.lbr
/
MAC2CPM.C
< prev
next >
Wrap
Text File
|
1990-07-01
|
256b
|
16 lines
#include <stdio.h>
#define CR 0x0d
#define LF 0x0a
main()
{
int c;
while ((c = getc(stdin)) != EOF){
putc(c,stdout);
if (c == CR)
putc(LF,stdout);
}
}