summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/latex/cjk/utils/Bg5conv/bg5conv.c
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/source/latex/cjk/utils/Bg5conv/bg5conv.c')
-rw-r--r--Master/texmf-dist/source/latex/cjk/utils/Bg5conv/bg5conv.c36
1 files changed, 0 insertions, 36 deletions
diff --git a/Master/texmf-dist/source/latex/cjk/utils/Bg5conv/bg5conv.c b/Master/texmf-dist/source/latex/cjk/utils/Bg5conv/bg5conv.c
deleted file mode 100644
index 8e0d8bf36a1..00000000000
--- a/Master/texmf-dist/source/latex/cjk/utils/Bg5conv/bg5conv.c
+++ /dev/null
@@ -1,36 +0,0 @@
-#define banner \
-"bg5conv (CJK ver. 4.8.1)" \
-
-/*2:*/
-#line 94 "/home/wl/git/cjk/cjk-4.8.1/utils/Bg5conv/bg5conv.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>=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*/