1/*-
2 * This code is derived from OpenBSD's libc/regex, original license follows:
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.
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.3 (Berkeley) 3/20/94
36 */
37
38#ifndef LLVM_SUPPORT_REGCNAME_H
39#define LLVM_SUPPORT_REGCNAME_H
40
41/* character-name table */
42static struct cname {
43	const char *name;
44	char code;
45} cnames[] = {
46	{ "NUL",			'\0' },
47	{ "SOH",			'\001' },
48	{ "STX",			'\002' },
49	{ "ETX",			'\003' },
50	{ "EOT",			'\004' },
51	{ "ENQ",			'\005' },
52	{ "ACK",			'\006' },
53	{ "BEL",			'\007' },
54	{ "alert",			'\007' },
55	{ "BS",				'\010' },
56	{ "backspace",			'\b' },
57	{ "HT",				'\011' },
58	{ "tab",			'\t' },
59	{ "LF",				'\012' },
60	{ "newline",			'\n' },
61	{ "VT",				'\013' },
62	{ "vertical-tab",		'\v' },
63	{ "FF",				'\014' },
64	{ "form-feed",			'\f' },
65	{ "CR",				'\015' },
66	{ "carriage-return",		'\r' },
67	{ "SO",				'\016' },
68	{ "SI",				'\017' },
69	{ "DLE",			'\020' },
70	{ "DC1",			'\021' },
71	{ "DC2",			'\022' },
72	{ "DC3",			'\023' },
73	{ "DC4",			'\024' },
74	{ "NAK",			'\025' },
75	{ "SYN",			'\026' },
76	{ "ETB",			'\027' },
77	{ "CAN",			'\030' },
78	{ "EM",				'\031' },
79	{ "SUB",			'\032' },
80	{ "ESC",			'\033' },
81	{ "IS4",			'\034' },
82	{ "FS",				'\034' },
83	{ "IS3",			'\035' },
84	{ "GS",				'\035' },
85	{ "IS2",			'\036' },
86	{ "RS",				'\036' },
87	{ "IS1",			'\037' },
88	{ "US",				'\037' },
89	{ "space",			' ' },
90	{ "exclamation-mark",		'!' },
91	{ "quotation-mark",		'"' },
92	{ "number-sign",		'#' },
93	{ "dollar-sign",		'$' },
94	{ "percent-sign",		'%' },
95	{ "ampersand",			'&' },
96	{ "apostrophe",			'\'' },
97	{ "left-parenthesis",		'(' },
98	{ "right-parenthesis",		')' },
99	{ "asterisk",			'*' },
100	{ "plus-sign",			'+' },
101	{ "comma",			',' },
102	{ "hyphen",			'-' },
103	{ "hyphen-minus",		'-' },
104	{ "period",			'.' },
105	{ "full-stop",			'.' },
106	{ "slash",			'/' },
107	{ "solidus",			'/' },
108	{ "zero",			'0' },
109	{ "one",			'1' },
110	{ "two",			'2' },
111	{ "three",			'3' },
112	{ "four",			'4' },
113	{ "five",			'5' },
114	{ "six",			'6' },
115	{ "seven",			'7' },
116	{ "eight",			'8' },
117	{ "nine",			'9' },
118	{ "colon",			':' },
119	{ "semicolon",			';' },
120	{ "less-than-sign",		'<' },
121	{ "equals-sign",		'=' },
122	{ "greater-than-sign",		'>' },
123	{ "question-mark",		'?' },
124	{ "commercial-at",		'@' },
125	{ "left-square-bracket",	'[' },
126	{ "backslash",			'\\' },
127	{ "reverse-solidus",		'\\' },
128	{ "right-square-bracket",	']' },
129	{ "circumflex",			'^' },
130	{ "circumflex-accent",		'^' },
131	{ "underscore",			'_' },
132	{ "low-line",			'_' },
133	{ "grave-accent",		'`' },
134	{ "left-brace",			'{' },
135	{ "left-curly-bracket",		'{' },
136	{ "vertical-line",		'|' },
137	{ "right-brace",		'}' },
138	{ "right-curly-bracket",	'}' },
139	{ "tilde",			'~' },
140	{ "DEL",			'\177' },
141	{ NULL,				0 }
142};
143
144#endif
145