mirror of
https://github.com/deater/dos33fsprogs.git
synced 2025-01-19 15:30:08 +00:00
19 lines
227 B
C
19 lines
227 B
C
#include <stdio.h>
|
|
|
|
int main(int argc, char **argv) {
|
|
|
|
char string[BUFSIZ];
|
|
char *result;
|
|
|
|
int inverse=0;
|
|
|
|
while(1) {
|
|
|
|
result=fgets(string,BUFSIZ,stdin);
|
|
if (result==NULL) break;
|
|
printf("%s",string);
|
|
}
|
|
|
|
return 0;
|
|
}
|