diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2010-12-19 15:40:03 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2010-12-19 15:40:03 +0000 |
commit | d62b7f1f8a3c27c3cd51d4eb41d51e8aba545217 (patch) | |
tree | 5edb6f096e0c7d59e5965a264c481f37637de8aa /Build/source/texk/cjkutils/bg5conv.c | |
parent | 377cf2466444797e8b16032144a606930d520cb1 (diff) |
cjk/utils 4.8.2 plus changes from Akira
git-svn-id: svn://tug.org/texlive/trunk@20806 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/cjkutils/bg5conv.c')
-rw-r--r-- | Build/source/texk/cjkutils/bg5conv.c | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/Build/source/texk/cjkutils/bg5conv.c b/Build/source/texk/cjkutils/bg5conv.c new file mode 100644 index 00000000000..14837a1c843 --- /dev/null +++ b/Build/source/texk/cjkutils/bg5conv.c @@ -0,0 +1,33 @@ +#define banner \ +"bg5conv (CJK ver. 4.8.2)" \ + +/*2:*/ +#line 94 "./cjkutils-4.8.2/Bg5conv/bg5conv.w" + +#include <stdio.h> +#include <stdlib.h> + + +int main(int argc,char*argv[]) +{int ch; + +fprintf(stdout,"\\def\\CJKpreproc{%s}",banner); + +ch= fgetc(stdin); + +while(!feof(stdin)) +{if(ch>=0xA1&&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*/ |