xref: /original-bsd/usr.bin/tn3270/api/asc_ebc.h (revision c3e32dec)
1 /*-
2  * Copyright (c) 1988, 1993
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  *
7  *	@(#)asc_ebc.h	8.1 (Berkeley) 06/06/93
8  */
9 
10 /*
11  * Definitions of translate tables used for ascii<->ebcdic translation.
12  */
13 
14 #define	INCLUDED_ASCEBC
15 
16 /*
17  * ascii/ebcdic translation information
18  */
19 
20 #define	NASCII	128		/* number of ascii characters */
21 
22 #define	NEBC	256		/* number of ebcdic characters */
23 
24 extern unsigned char
25 	asc_ebc[NASCII], ebc_asc[NEBC];
26