mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-11-01 01:06:33 +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;
|
|
}
|