add support for arbitrary number of utmp entries
[unix-history] / usr / src / bin / csh / char.c
CommitLineData
f1415978
EW
1#ifndef lint
2static char *sccsid = "@(#)char.c 4.1 (Berkeley) %G%";
3#endif
4
5#include "sh.char.h"
6
7char _cmap[256] = {
8/* nul soh stx etx */
9 0, 0, 0, 0,
10
11/* eot enq ack bel */
12 0, 0, 0, 0,
13
14/* bs ht nl vt */
15 0, _SP|_META, _NL|_META, 0,
16
17/* np cr so si */
18 0, 0, 0, 0,
19
20/* dle dc1 dc2 dc3 */
21 0, 0, 0, 0,
22
23/* dc4 nak syn etb */
24 0, 0, 0, 0,
25
26/* can em sub esc */
27 0, 0, 0, 0,
28
29/* fs gs rs us */
30 0, 0, 0, 0,
31
32/* sp ! " # */
33 _SP|_META, 0, _Q, _META,
34
35/* $ % & ' */
36 _DOL, 0, _META, _Q,
37
38/* ( ) * + */
39 _META, _META, _GLOB, 0,
40
41/* , - . / */
42 0, 0, 0, 0,
43
44/* 0 1 2 3 */
45 0, 0, 0, 0,
46
47/* 4 5 6 7 */
48 0, 0, 0, 0,
49
50/* 8 9 : ; */
51 0, 0, 0, _META,
52
53/* < = > ? */
54 _META, 0, _META, _GLOB,
55
56/* @ A B C */
57 0, 0, 0, 0,
58
59/* D E F G */
60 0, 0, 0, 0,
61
62/* H I J K */
63 0, 0, 0, 0,
64
65/* L M N O */
66 0, 0, 0, 0,
67
68/* P Q R S */
69 0, 0, 0, 0,
70
71/* T U V W */
72 0, 0, 0, 0,
73
74/* X Y Z [ */
75 0, 0, 0, _GLOB,
76
77/* \ ] ^ _ */
78 _ESC, 0, 0, 0,
79
80/* ` a b c */
81 _Q1|_GLOB, 0, 0, 0,
82
83/* d e f g */
84 0, 0, 0, 0,
85
86/* h i j k */
87 0, 0, 0, 0,
88
89/* l m n o */
90 0, 0, 0, 0,
91
92/* p q r s */
93 0, 0, 0, 0,
94
95/* t u v w */
96 0, 0, 0, 0,
97
98/* x y z { */
99 0, 0, 0, _GLOB,
100
101/* | } ~ del */
102 _META, 0, 0, 0,
103};