xref: /original-bsd/usr.bin/tn3270/api/asc_ebc.h (revision a8414ee1)
1 /*-
2  * Copyright (c) 1988 The Regents of the University of California.
3  * All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  *
7  *	@(#)asc_ebc.h	4.2 (Berkeley) 04/26/91
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