#define banner \ "extconv (CJK ver. 4.8.4)" \ /*2:*/ #line 94 "/usr/local/home/wl/git/cjk/cjk-4.8.4/utils/extconv/extconv.w" #include #include int main(int argc,char*argv[]) {int ch; fprintf(stdout,"\\def\\CJKpreproc{%s}",banner); ch= fgetc(stdin); while(!feof(stdin)) {if(ch>=0x81&&ch<=0xFE) {fprintf(stdout,"\177%c\177",ch); ch= fgetc(stdin); if(!feof(stdin)) fprintf(stdout,"%d\177",ch); } else fputc(ch,stdout); ch= fgetc(stdin); } exit(EXIT_SUCCESS); return 0; }/*:2*/