mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-11-01 01:06:33 +00:00
21 lines
257 B
C
21 lines
257 B
C
|
#include <stdio.h>
|
||
|
|
||
|
int main(int argc, char **argv) {
|
||
|
|
||
|
int ch;
|
||
|
while(1) {
|
||
|
|
||
|
ch=fgetc(stdin);
|
||
|
if (feof(stdin)) return 0;
|
||
|
ch=ch&0x7f;
|
||
|
if (ch=='\r') ch=('\n');
|
||
|
fputc(ch,stdout);
|
||
|
}
|
||
|
|
||
|
return 0;
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
|