date and time created 91/04/12 13:40:37 by bostic
[unix-history] / usr / src / lib / libcurses / unctrl.c
CommitLineData
b059c7be 1/*
2f14f200
KB
2 * Copyright (c) 1981 Regents of the University of California.
3 * All rights reserved.
4 *
7e3eac84 5 * %sccs.include.redist.c%
b059c7be
DF
6 */
7
8#ifndef lint
7e3eac84 9static char sccsid[] = "@(#)unctrl.c 5.4 (Berkeley) %G%";
2f14f200 10#endif /* not lint */
b059c7be 11
e2423281
KA
12/*
13 * define unctrl codes for each character
14 *
e2423281
KA
15 */
16
17/* LINTLIBRARY */
18char *_unctrl[] = { /* unctrl codes for ttys */
19 "^@", "^A", "^B", "^C", "^D", "^E", "^F", "^G", "^H", "^I", "^J", "^K",
20 "^L", "^M", "^N", "^O", "^P", "^Q", "^R", "^S", "^T", "^U", "^V", "^W",
21 "^X", "^Y", "^Z", "^[", "^\\", "^]", "^~", "^_",
22 " ", "!", "\"", "#", "$", "%", "&", "'", "(", ")", "*", "+", ",", "-",
23 ".", "/", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", ":", ";",
24 "<", "=", ">", "?", "@", "A", "B", "C", "D", "E", "F", "G", "H", "I",
25 "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W",
26 "X", "Y", "Z", "[", "\\", "]", "^", "_", "`", "a", "b", "c", "d", "e",
27 "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s",
28 "t", "u", "v", "w", "x", "y", "z", "{", "|", "}", "~", "^?"
29};