/* ITS-to-Normal by Richard Conn ITS-to-Normal is to be used as a filter to convert the ITS file at STDIN to a "normal" file at STDOUT. Syntax of use: itstonorm normfile */ #include main() { int ch1; /* dummy char */ getchar(); getchar(); getchar(); getchar(); /* flush 1st 4 bytes */ while ((ch1 = getchar()) != EOF) putchar(ch1); }