summaryrefslogtreecommitdiff
path: root/Build/source/texk/cjkutils/conv/bg5conv.c
blob: d8170b0be14d1d180cbbc1bcf3189be72f2bd3c6 (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
#define banner  \
"bg5conv (CJK ver. 4.7.0)" \

/*2:*/
#line 94 "/home/wl/cvs/cjk/cjk-4.7.0/utils/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*/