mirror of
https://github.com/deater/dos33fsprogs.git
synced 2025-01-01 05:31:52 +00:00
17 lines
167 B
C
17 lines
167 B
C
|
#include <stdio.h>
|
||
|
|
||
|
int main(int argc, char **argv) {
|
||
|
|
||
|
int result;
|
||
|
|
||
|
while(1) {
|
||
|
result=getchar();
|
||
|
if (result<0) break;
|
||
|
|
||
|
putchar(result&0x7f);
|
||
|
|
||
|
}
|
||
|
|
||
|
return 0;
|
||
|
}
|