You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
303 B
15 lines
303 B
/* Achtung unter dos ist \n in wirklichkeit \r\n bei den meisten
|
|
Compilern, da funktioniert das natürlich nicht!!!! */
|
|
#include <stdio.h>
|
|
|
|
int main(int argc, char* argv[]) {
|
|
int c=0;
|
|
|
|
while(fread(&c, 1, 1, stdin)) {
|
|
putchar((c=='\r')?'\n':c);
|
|
fflush(stdout);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|