1/*	$NetBSD: cname.h,v 1.2 2008/12/05 22:51:42 christos Exp $ */
2
3/*-
4 * Copyright (c) 1992, 1993, 1994 Henry Spencer.
5 * Copyright (c) 1992, 1993, 1994
6 *	The Regents of the University of California.  All rights reserved.
7 *
8 * This code is derived from software contributed to Berkeley by
9 * Henry Spencer of the University of Toronto.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 *    notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 *    notice, this list of conditions and the following disclaimer in the
18 *    documentation and/or other materials provided with the distribution.
19 * 3. Neither the name of the University nor the names of its contributors
20 *    may be used to endorse or promote products derived from this software
21 *    without specific prior written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * SUCH DAMAGE.
34 *
35 *	@(#)cname.h	8.2 (Berkeley) 3/16/94
36 */
37
38/* character-name table */
39static struct cname {
40	const RCHAR_T *name;
41	char code;
42} cnames[] = {
43	{ L("NUL"),		'\0' },
44	{ L("SOH"),		'\001' },
45	{ L("STX"),		'\002' },
46	{ L("ETX"),		'\003' },
47	{ L("EOT"),		'\004' },
48	{ L("ENQ"),		'\005' },
49	{ L("ACK"),		'\006' },
50	{ L("BEL"),		'\007' },
51	{ L("alert"),		'\007' },
52	{ L("BS"),		'\010' },
53	{ L("backspace"),	'\b' },
54	{ L("HT"),		'\011' },
55	{ L("tab"),		'\t' },
56	{ L("LF"),		'\012' },
57	{ L("newline"),		'\n' },
58	{ L("VT"),		'\013' },
59	{ L("vertical-tab"),	'\v' },
60	{ L("FF"),		'\014' },
61	{ L("form-feed"),	'\f' },
62	{ L("CR"),		'\015' },
63	{ L("carriage-return"),	'\r' },
64	{ L("SO"),		'\016' },
65	{ L("SI"),		'\017' },
66	{ L("DLE"),		'\020' },
67	{ L("DC1"),		'\021' },
68	{ L("DC2"),		'\022' },
69	{ L("DC3"),		'\023' },
70	{ L("DC4"),		'\024' },
71	{ L("NAK"),		'\025' },
72	{ L("SYN"),		'\026' },
73	{ L("ETB"),		'\027' },
74	{ L("CAN"),		'\030' },
75	{ L("EM"),		'\031' },
76	{ L("SUB"),		'\032' },
77	{ L("ESC"),		'\033' },
78	{ L("IS4"),		'\034' },
79	{ L("FS"),		'\034' },
80	{ L("IS3"),		'\035' },
81	{ L("GS"),		'\035' },
82	{ L("IS2"),		'\036' },
83	{ L("RS"),		'\036' },
84	{ L("IS1"),		'\037' },
85	{ L("US"),		'\037' },
86	{ L("space"),		' ' },
87	{ L("exclamation-mark"),'!' },
88	{ L("quotation-mark"),	'"' },
89	{ L("number-sign"),	'#' },
90	{ L("dollar-sign"),	'$' },
91	{ L("percent-sign"),	'%' },
92	{ L("ampersand"),	'&' },
93	{ L("apostrophe"),	'\'' },
94	{ L("left-parenthesis"),'(' },
95	{ L("right-parenthesis"),')' },
96	{ L("asterisk"),	'*' },
97	{ L("plus-sign"),	'+' },
98	{ L("comma"),		',' },
99	{ L("hyphen"),		'-' },
100	{ L("hyphen-minus"),	'-' },
101	{ L("period"),		'.' },
102	{ L("full-stop"),	'.' },
103	{ L("slash"),		'/' },
104	{ L("solidus"),		'/' },
105	{ L("zero"),		'0' },
106	{ L("one"),		'1' },
107	{ L("two"),		'2' },
108	{ L("three"),		'3' },
109	{ L("four"),		'4' },
110	{ L("five"),		'5' },
111	{ L("six"),		'6' },
112	{ L("seven"),		'7' },
113	{ L("eight"),		'8' },
114	{ L("nine"),		'9' },
115	{ L("colon"),		':' },
116	{ L("semicolon"),	';' },
117	{ L("less-than-sign"),	'<' },
118	{ L("equals-sign"),	'=' },
119	{ L("greater-than-sign"),'>' },
120	{ L("question-mark"),	'?' },
121	{ L("commercial-at"),	'@' },
122	{ L("left-square-bracket"),'[' },
123	{ L("backslash"),	'\\' },
124	{ L("reverse-solidus"),	'\\' },
125	{ L("right-square-bracket"),']' },
126	{ L("circumflex"),	'^' },
127	{ L("circumflex-accent"),'^' },
128	{ L("underscore"),	'_' },
129	{ L("low-line"),	'_' },
130	{ L("grave-accent"),	'`' },
131	{ L("left-brace"),	'{' },
132	{ L("left-curly-bracket"),'{' },
133	{ L("vertical-line"),	'|' },
134	{ L("right-brace"),	'}' },
135	{ L("right-curly-bracket"),'}' },
136	{ L("tilde"),		'~' },
137	{ L("DEL"),		'\177' },
138	{ NULL,			0 },
139};
140