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