xref: /original-bsd/lib/libcurses/unctrl.c (revision 6c57d260)
1 /*
2  * define unctrl codes for each character
3  *
4  * 01/26/81 (Berkeley) @(#)unctrl.c	1.1
5  */
6 
7 /* LINTLIBRARY */
8 char	*_unctrl[]	= {	/* unctrl codes for ttys		*/
9 	"^@", "^A", "^B", "^C", "^D", "^E", "^F", "^G", "^H", "^I", "^J", "^K",
10 	"^L", "^M", "^N", "^O", "^P", "^Q", "^R", "^S", "^T", "^U", "^V", "^W",
11 	"^X", "^Y", "^Z", "^[", "^\\", "^]", "^~", "^_",
12 	" ", "!", "\"", "#", "$",  "%", "&", "'", "(", ")", "*", "+", ",", "-",
13 	".", "/", "0",  "1", "2",  "3", "4", "5", "6", "7", "8", "9", ":", ";",
14 	"<", "=", ">",  "?", "@",  "A", "B", "C", "D", "E", "F", "G", "H", "I",
15 	"J", "K", "L",  "M", "N",  "O", "P", "Q", "R", "S", "T", "U", "V", "W",
16 	"X", "Y", "Z",  "[", "\\", "]", "^", "_", "`", "a", "b", "c", "d", "e",
17 	"f", "g", "h",  "i", "j",  "k", "l", "m", "n", "o", "p", "q", "r", "s",
18 	"t", "u", "v",  "w", "x",  "y", "z", "{", "|", "}", "~", "^?"
19 };
20