xref: /csrg-svn/usr.bin/tn3270/api/asc_ebc.h (revision 62317)
148754Sbostic /*-
2*62317Sbostic  * Copyright (c) 1988, 1993
3*62317Sbostic  *	The Regents of the University of California.  All rights reserved.
431890Sminshall  *
548754Sbostic  * %sccs.include.redist.c%
633820Sbostic  *
7*62317Sbostic  *	@(#)asc_ebc.h	8.1 (Berkeley) 06/06/93
831604Sminshall  */
931604Sminshall 
1033820Sbostic /*
1133820Sbostic  * Definitions of translate tables used for ascii<->ebcdic translation.
1233820Sbostic  */
1333820Sbostic 
1431604Sminshall #define	INCLUDED_ASCEBC
1531604Sminshall 
1631604Sminshall /*
1731604Sminshall  * ascii/ebcdic translation information
1831604Sminshall  */
1931604Sminshall 
2031604Sminshall #define	NASCII	128		/* number of ascii characters */
2131604Sminshall 
2231604Sminshall #define	NEBC	256		/* number of ebcdic characters */
2331604Sminshall 
2431604Sminshall extern unsigned char
2531604Sminshall 	asc_ebc[NASCII], ebc_asc[NEBC];
26