summaryrefslogtreecommitdiff
path: root/Build/source/texk/cjkutils/sjisconv.c
blob: aa94e78add569d519d29c023f68c1bfb1c970511 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#define banner  \
"sjisconv (CJK ver. 4.8.5)" \

/*2:*/
#line 96 "./cjkutils-src/SJISconv/sjisconv.w"

#include <stdio.h> 
#include <stdlib.h> 
#ifdef WIN32
#include <fcntl.h> 
#include <io.h> 
#endif


int main(int argc,char*argv[])
{int ch;

#ifdef WIN32
setmode(fileno(stdout),_O_BINARY);
#endif
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*/