1*0Sstevel@tonic-gate /* 2*0Sstevel@tonic-gate * Copyright 1990 Sun Microsystems, Inc. All rights reserved. 3*0Sstevel@tonic-gate * Use is subject to license terms. 4*0Sstevel@tonic-gate */ 5*0Sstevel@tonic-gate 6*0Sstevel@tonic-gate /* Copyright (c) 1983, 1984, 1985, 1986, 1987, 1988, 1989 AT&T */ 7*0Sstevel@tonic-gate /* All Rights Reserved */ 8*0Sstevel@tonic-gate 9*0Sstevel@tonic-gate /* 10*0Sstevel@tonic-gate * Copyright (c) 1980 Regents of the University of California. 11*0Sstevel@tonic-gate * All rights reserved. The Berkeley Software License Agreement 12*0Sstevel@tonic-gate * specifies the terms and conditions for redistribution. 13*0Sstevel@tonic-gate */ 14*0Sstevel@tonic-gate 15*0Sstevel@tonic-gate #pragma ident "%Z%%M% %I% %E% SMI" 16*0Sstevel@tonic-gate 17*0Sstevel@tonic-gate #include "sh.char.h" 18*0Sstevel@tonic-gate 19*0Sstevel@tonic-gate unsigned short _cmap[128] = { 20*0Sstevel@tonic-gate /* nul soh stx etx */ 21*0Sstevel@tonic-gate 0, 0, 0, 0, 22*0Sstevel@tonic-gate 23*0Sstevel@tonic-gate /* eot enq ack bel */ 24*0Sstevel@tonic-gate 0, 0, 0, 0, 25*0Sstevel@tonic-gate 26*0Sstevel@tonic-gate /* bs ht nl vt */ 27*0Sstevel@tonic-gate 0, _SP|_META, _NL|_META, 0, 28*0Sstevel@tonic-gate 29*0Sstevel@tonic-gate /* np cr so si */ 30*0Sstevel@tonic-gate 0, 0, 0, 0, 31*0Sstevel@tonic-gate 32*0Sstevel@tonic-gate /* dle dc1 dc2 dc3 */ 33*0Sstevel@tonic-gate 0, 0, 0, 0, 34*0Sstevel@tonic-gate 35*0Sstevel@tonic-gate /* dc4 nak syn etb */ 36*0Sstevel@tonic-gate 0, 0, 0, 0, 37*0Sstevel@tonic-gate 38*0Sstevel@tonic-gate /* can em sub esc */ 39*0Sstevel@tonic-gate 0, 0, 0, 0, 40*0Sstevel@tonic-gate 41*0Sstevel@tonic-gate /* fs gs rs us */ 42*0Sstevel@tonic-gate 0, 0, 0, 0, 43*0Sstevel@tonic-gate 44*0Sstevel@tonic-gate /* sp ! " # */ 45*0Sstevel@tonic-gate _SP|_META, 0, _Q, _META, 46*0Sstevel@tonic-gate 47*0Sstevel@tonic-gate /* $ % & ' */ 48*0Sstevel@tonic-gate _DOL, 0, _META, _Q, 49*0Sstevel@tonic-gate 50*0Sstevel@tonic-gate /* ( ) * + */ 51*0Sstevel@tonic-gate _META, _META, _GLOB, 0, 52*0Sstevel@tonic-gate 53*0Sstevel@tonic-gate /* , - . / */ 54*0Sstevel@tonic-gate 0, 0, 0, 0, 55*0Sstevel@tonic-gate 56*0Sstevel@tonic-gate /* 0 1 2 3 */ 57*0Sstevel@tonic-gate _DIG, _DIG, _DIG, _DIG, 58*0Sstevel@tonic-gate 59*0Sstevel@tonic-gate /* 4 5 6 7 */ 60*0Sstevel@tonic-gate _DIG, _DIG, _DIG, _DIG, 61*0Sstevel@tonic-gate 62*0Sstevel@tonic-gate /* 8 9 : ; */ 63*0Sstevel@tonic-gate _DIG, _DIG, 0, _META, 64*0Sstevel@tonic-gate 65*0Sstevel@tonic-gate /* < = > ? */ 66*0Sstevel@tonic-gate _META, 0, _META, _GLOB, 67*0Sstevel@tonic-gate 68*0Sstevel@tonic-gate /* @ A B C */ 69*0Sstevel@tonic-gate 0, _LET, _LET, _LET, 70*0Sstevel@tonic-gate 71*0Sstevel@tonic-gate /* D E F G */ 72*0Sstevel@tonic-gate _LET, _LET, _LET, _LET, 73*0Sstevel@tonic-gate 74*0Sstevel@tonic-gate /* H I J K */ 75*0Sstevel@tonic-gate _LET, _LET, _LET, _LET, 76*0Sstevel@tonic-gate 77*0Sstevel@tonic-gate /* L M N O */ 78*0Sstevel@tonic-gate _LET, _LET, _LET, _LET, 79*0Sstevel@tonic-gate 80*0Sstevel@tonic-gate /* P Q R S */ 81*0Sstevel@tonic-gate _LET, _LET, _LET, _LET, 82*0Sstevel@tonic-gate 83*0Sstevel@tonic-gate /* T U V W */ 84*0Sstevel@tonic-gate _LET, _LET, _LET, _LET, 85*0Sstevel@tonic-gate 86*0Sstevel@tonic-gate /* X Y Z [ */ 87*0Sstevel@tonic-gate _LET, _LET, _LET, _GLOB, 88*0Sstevel@tonic-gate 89*0Sstevel@tonic-gate /* \ ] ^ _ */ 90*0Sstevel@tonic-gate _ESC, 0, 0, _LET, 91*0Sstevel@tonic-gate 92*0Sstevel@tonic-gate /* ` a b c */ 93*0Sstevel@tonic-gate _Q1|_GLOB, _LET, _LET, _LET, 94*0Sstevel@tonic-gate 95*0Sstevel@tonic-gate /* d e f g */ 96*0Sstevel@tonic-gate _LET, _LET, _LET, _LET, 97*0Sstevel@tonic-gate 98*0Sstevel@tonic-gate /* h i j k */ 99*0Sstevel@tonic-gate _LET, _LET, _LET, _LET, 100*0Sstevel@tonic-gate 101*0Sstevel@tonic-gate /* l m n o */ 102*0Sstevel@tonic-gate _LET, _LET, _LET, _LET, 103*0Sstevel@tonic-gate 104*0Sstevel@tonic-gate /* p q r s */ 105*0Sstevel@tonic-gate _LET, _LET, _LET, _LET, 106*0Sstevel@tonic-gate 107*0Sstevel@tonic-gate /* t u v w */ 108*0Sstevel@tonic-gate _LET, _LET, _LET, _LET, 109*0Sstevel@tonic-gate 110*0Sstevel@tonic-gate /* x y z { */ 111*0Sstevel@tonic-gate _LET, _LET, _LET, _GLOB, 112*0Sstevel@tonic-gate 113*0Sstevel@tonic-gate /* | } ~ del */ 114*0Sstevel@tonic-gate _META, 0, 0, 0, 115*0Sstevel@tonic-gate }; 116