diff options
Diffstat (limited to 'Master/texmf-dist/source/latex/cjk/utils/extconv/extconv.c')
-rw-r--r-- | Master/texmf-dist/source/latex/cjk/utils/extconv/extconv.c | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/Master/texmf-dist/source/latex/cjk/utils/extconv/extconv.c b/Master/texmf-dist/source/latex/cjk/utils/extconv/extconv.c new file mode 100644 index 00000000000..e6c3d60a17a --- /dev/null +++ b/Master/texmf-dist/source/latex/cjk/utils/extconv/extconv.c @@ -0,0 +1,37 @@ +#define banner \ +"extconv (CJK ver. 4.8.0)" \ + +/*2:*/ +#line 94 "/home/wl/git/cjk/cjk-4.8.0/utils/extconv/extconv.w" + +#include <stdio.h> +#include <stdlib.h> + + +int main(argc,argv) +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*/ |