2004-04-21 01:15:41 +00:00
|
|
|
void jis_in(int fd, long *notused, struct convert *out);
|
|
|
|
|
void jisjis_in(int fd, long *notused, struct convert *out);
|
|
|
|
|
void msjis_in(int fd, long *notused, struct convert *out);
|
|
|
|
|
void ujis_in(int fd, long *notused, struct convert *out);
|
|
|
|
|
void jisjis_out(Rune *base, int n, long *notused);
|
|
|
|
|
void ujis_out(Rune *base, int n, long *notused);
|
|
|
|
|
void msjis_out(Rune *base, int n, long *notused);
|
|
|
|
|
void big5_in(int fd, long *notused, struct convert *out);
|
|
|
|
|
void big5_out(Rune *base, int n, long *notused);
|
|
|
|
|
void gb_in(int fd, long *notused, struct convert *out);
|
|
|
|
|
void gb_out(Rune *base, int n, long *notused);
|
|
|
|
|
void uksc_in(int fd, long *notused, struct convert *out);
|
|
|
|
|
void uksc_out(Rune *base, int n, long *notused);
|
2005-12-26 04:47:21 +00:00
|
|
|
void html_in(int fd, long *notused, struct convert *out);
|
|
|
|
|
void html_out(Rune *base, int n, long *notused);
|
2006-05-21 18:57:51 +00:00
|
|
|
void tune_in(int fd, long *notused, struct convert *out);
|
|
|
|
|
void tune_out(Rune *base, int n, long *notused);
|
2004-04-21 01:15:41 +00:00
|
|
|
|
|
|
|
|
#define emit(x) *(*r)++ = (x)
|
|
|
|
|
#define NRUNE 65536
|
|
|
|
|
|
|
|
|
|
extern long tab[]; /* common table indexed by Runes for reverse mappings */
|