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