xref: /original-bsd/usr.bin/tn3270/api/asc_ebc.h (revision e877e4b2)
1 /*
2  * Definitions of translate tables used for ascii<->ebcdic translation.
3  *
4  * @(#)asc_ebc.h	3.1 (Berkeley) 08/11/87
5  */
6 
7 #define	INCLUDED_ASCEBC
8 
9 /*
10  * ascii/ebcdic translation information
11  */
12 
13 #define	NASCII	128		/* number of ascii characters */
14 
15 #define	NEBC	256		/* number of ebcdic characters */
16 
17 extern unsigned char
18 	asc_ebc[NASCII], ebc_asc[NEBC];
19