xref: /netbsd/lib/libcurses/unctrl.c (revision eb7c1594)
1 /*	$NetBSD: unctrl.c,v 1.9 2003/08/07 16:44:25 agc Exp $	*/
2 
3 /*
4  * Copyright (c) 1981, 1993
5  *	The Regents of the University of California.  All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. Neither the name of the University nor the names of its contributors
16  *    may be used to endorse or promote products derived from this software
17  *    without specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29  * SUCH DAMAGE.
30  */
31 
32 #include <sys/cdefs.h>
33 #ifndef lint
34 #if 0
35 static char sccsid[] = "@(#)unctrl.c	8.1 (Berkeley) 6/4/93";
36 #else
37 __RCSID("$NetBSD: unctrl.c,v 1.9 2003/08/07 16:44:25 agc Exp $");
38 #endif
39 #endif				/* not lint */
40 
41 char   *__unctrl[256] = {
42 	"^@", "^A", "^B", "^C", "^D", "^E", "^F", "^G",
43 	"^H", "^I", "^J", "^K", "^L", "^M", "^N", "^O",
44 	"^P", "^Q", "^R", "^S", "^T", "^U", "^V", "^W",
45 	"^X", "^Y", "^Z", "^[", "^\\", "^]", "^~", "^_",
46 	" ", "!", "\"", "#", "$", "%", "&", "'",
47 	"(", ")", "*", "+", ",", "-", ".", "/",
48 	"0", "1", "2", "3", "4", "5", "6", "7",
49 	"8", "9", ":", ";", "<", "=", ">", "?",
50 	"@", "A", "B", "C", "D", "E", "F", "G",
51 	"H", "I", "J", "K", "L", "M", "N", "O",
52 	"P", "Q", "R", "S", "T", "U", "V", "W",
53 	"X", "Y", "Z", "[", "\\", "]", "^", "_",
54 	"`", "a", "b", "c", "d", "e", "f", "g",
55 	"h", "i", "j", "k", "l", "m", "n", "o",
56 	"p", "q", "r", "s", "t", "u", "v", "w",
57 	"x", "y", "z", "{", "|", "}", "~", "^?",
58 
59 	"0x80", "0x81", "0x82", "0x83", "0x84", "0x85", "0x86", "0x87",
60 	"0x88", "0x89", "0x8a", "0x8b", "0x8c", "0x8d", "0x8e", "0x8f",
61 	"0x90", "0x91", "0x92", "0x93", "0x94", "0x95", "0x96", "0x97",
62 	"0x98", "0x99", "0x9a", "0x9b", "0x9c", "0x9d", "0x9e", "0x9f",
63 	"0xa0", "0xa1", "0xa2", "0xa3", "0xa4", "0xa5", "0xa6", "0xa7",
64 	"0xa8", "0xa9", "0xaa", "0xab", "0xac", "0xad", "0xae", "0xaf",
65 	"0xb0", "0xb1", "0xb2", "0xb3", "0xb4", "0xb5", "0xb6", "0xb7",
66 	"0xb8", "0xb9", "0xba", "0xbb", "0xbc", "0xbd", "0xbe", "0xbf",
67 	"0xc0", "0xc1", "0xc2", "0xc3", "0xc4", "0xc5", "0xc6", "0xc7",
68 	"0xc8", "0xc9", "0xca", "0xcb", "0xcc", "0xcd", "0xce", "0xcf",
69 	"0xd0", "0xd1", "0xd2", "0xd3", "0xd4", "0xd5", "0xd6", "0xd7",
70 	"0xd8", "0xd9", "0xda", "0xdb", "0xdc", "0xdd", "0xde", "0xdf",
71 	"0xe0", "0xe1", "0xe2", "0xe3", "0xe4", "0xe5", "0xe6", "0xe7",
72 	"0xe8", "0xe9", "0xea", "0xeb", "0xec", "0xed", "0xee", "0xef",
73 	"0xf0", "0xf1", "0xf2", "0xf3", "0xf4", "0xf5", "0xf6", "0xf7",
74 	"0xf8", "0xf9", "0xfa", "0xfb", "0xfc", "0xfd", "0xfe", "0xff",
75 };
76 
77 char    __unctrllen[256] = {
78 	2, 2, 2, 2, 2, 2, 2, 2,
79 	2, 2, 2, 2, 2, 2, 2, 2,
80 	2, 2, 2, 2, 2, 2, 2, 2,
81 	2, 2, 2, 2, 2, 2, 2, 2,
82 	1, 1, 1, 1, 1, 1, 1, 1,
83 	1, 1, 1, 1, 1, 1, 1, 1,
84 	1, 1, 1, 1, 1, 1, 1, 1,
85 	1, 1, 1, 1, 1, 1, 1, 1,
86 	1, 1, 1, 1, 1, 1, 1, 1,
87 	1, 1, 1, 1, 1, 1, 1, 1,
88 	1, 1, 1, 1, 1, 1, 1, 1,
89 	1, 1, 1, 1, 1, 1, 1, 1,
90 	1, 1, 1, 1, 1, 1, 1, 1,
91 	1, 1, 1, 1, 1, 1, 1, 1,
92 	1, 1, 1, 1, 1, 1, 1, 1,
93 	1, 1, 1, 1, 1, 1, 1, 2,
94 	4, 4, 4, 4, 4, 4, 4, 4,
95 	4, 4, 4, 4, 4, 4, 4, 4,
96 	4, 4, 4, 4, 4, 4, 4, 4,
97 	4, 4, 4, 4, 4, 4, 4, 4,
98 	4, 4, 4, 4, 4, 4, 4, 4,
99 	4, 4, 4, 4, 4, 4, 4, 4,
100 	4, 4, 4, 4, 4, 4, 4, 4,
101 	4, 4, 4, 4, 4, 4, 4, 4,
102 	4, 4, 4, 4, 4, 4, 4, 4,
103 	4, 4, 4, 4, 4, 4, 4, 4,
104 	4, 4, 4, 4, 4, 4, 4, 4,
105 	4, 4, 4, 4, 4, 4, 4, 4,
106 	4, 4, 4, 4, 4, 4, 4, 4,
107 	4, 4, 4, 4, 4, 4, 4, 4,
108 	4, 4, 4, 4, 4, 4, 4, 4,
109 	4, 4, 4, 4, 4, 4, 4, 4,
110 };
111