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