1*48754Sbostic /*- 2*48754Sbostic * Copyright (c) 1988 The Regents of the University of California. 333820Sbostic * All rights reserved. 431890Sminshall * 5*48754Sbostic * %sccs.include.redist.c% 633820Sbostic * 7*48754Sbostic * @(#)asc_ebc.h 4.2 (Berkeley) 04/26/91 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