xref: /freebsd/contrib/tcsh/tc.const.c (revision b52b9d56d4e96089873a75f9e29062eec19fabba)
1 /* $Header: /src/pub/tcsh/tc.const.c,v 3.67 2002/07/06 22:21:07 christos Exp $ */
2 /*
3  * sh.const.c: String constants for tcsh.
4  */
5 /*-
6  * Copyright (c) 1980, 1991 The Regents of the University of California.
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in the
16  *    documentation and/or other materials provided with the distribution.
17  * 3. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  */
33 #include "sh.h"
34 
35 RCSID("$Id: tc.const.c,v 3.67 2002/07/06 22:21:07 christos Exp $")
36 
37 Char STRlogout[]	= { 'l', 'o', 'g', 'o', 'u', 't', '\0' };
38 Char STRautologout[]	= { 'a', 'u', 't', 'o', 'l', 'o', 'g', 'o', 'u', 't',
39 			    '\0' };
40 Char STRdefautologout[] = { '6', '0', '\0' };
41 #ifdef convex
42 Char STRrootdefautologout[] = { '1', '5', '\0' };
43 #endif
44 Char STRautomatic[]	= { 'a', 'u', 't', 'o', 'm', 'a', 't', 'i', 'c',
45 			    '\0' };
46 Char STRhangup[]	= { 'h', 'a', 'n', 'g', 'u', 'p', '\0' };
47 Char STRaout[]		= { 'a', '.', 'o', 'u', 't', '\0' };
48 Char STRtty[]		= { 't', 't', 'y', '\0' };
49 Char STRpts[]		= { 'p', 't', 's', '\0' };
50 Char STRany[]		= { 'a', 'n', 'y', '\0' };
51 Char STRstatus[]	= { 's', 't', 'a', 't', 'u', 's', '\0' };
52 Char STR0[]		= { '0', '\0' };
53 Char STR1[]		= { '1', '\0' };
54 /* STRm1 would look too much like STRml IMHO */
55 Char STRminus1[]	= { '-', '1', '\0' };
56 Char STRmaxint[]	= { '0', 'x', '7', 'f', 'f', 'f', 'f', 'f', 'f', 'f',
57 			    '\0' };
58 Char STRcolon[]		= { ':', '\0' };
59 Char STR_[]		= { '_', '\0' };
60 Char STRNULL[]		= { '\0' };
61 Char STRtcsh[]		= { 't', 'c', 's', 'h', '\0' };
62 Char STRhome[]		= { 'h', 'o', 'm', 'e', '\0' };
63 Char STRuser[]		= { 'u', 's', 'e', 'r', '\0' };
64 Char STRgroup[]		= { 'g', 'r', 'o', 'u', 'p', '\0' };
65 #ifdef AFS
66 Char STRafsuser[]	   = { 'a', 'f', 's', 'u', 's', 'e', 'r', '\0' };
67 #endif /* AFS */
68 Char STRterm[]		= { 't', 'e', 'r', 'm', '\0' };
69 Char STRversion[]	= { 'v', 'e', 'r', 's', 'i', 'o', 'n', '\0' };
70 Char STRuid[]		= { 'u', 'i', 'd', '\0' };
71 Char STRgid[]		= { 'g', 'i', 'd', '\0' };
72 Char STRunknown[]	= { 'u', 'n', 'k', 'n', 'o', 'w', 'n', '\0' };
73 Char STRnetwork[]	= { 'n', 'e', 't', 'w', 'o', 'r', 'k', '\0' };
74 Char STRdumb[]		= { 'd', 'u', 'm', 'b', '\0' };
75 Char STRHOST[]		= { 'H', 'O', 'S', 'T', '\0' };
76 #ifdef REMOTEHOST
77 Char STRREMOTEHOST[]	= { 'R', 'E', 'M', 'O', 'T', 'E', 'H',
78 			    'O', 'S', 'T', '\0' };
79 #endif /* REMOTEHOST */
80 Char STRHOSTTYPE[]	= { 'H', 'O', 'S', 'T', 'T', 'Y', 'P', 'E', '\0' };
81 Char STRVENDOR[]	= { 'V', 'E', 'N', 'D', 'O', 'R', '\0' };
82 Char STRMACHTYPE[]	= { 'M', 'A', 'C', 'H', 'T', 'Y', 'P', 'E', '\0' };
83 Char STROSTYPE[]	= { 'O', 'S', 'T', 'Y', 'P', 'E', '\0' };
84 Char STRedit[]		= { 'e', 'd', 'i', 't', '\0' };
85 Char STRaddsuffix[]	= { 'a', 'd', 'd', 's', 'u', 'f', 'f', 'i', 'x',
86 			    '\0' };
87 Char STRnostat[]	= { 'n', 'o', 's', 't', 'a', 't', '\0' };
88 Char STRshell[]		= { 's', 'h', 'e', 'l', 'l', '\0' };
89 Char STRtmpsh[]		= { '/', 't', 'm', 'p', '/', 's', 'h', '\0' };
90 Char STRverbose[]	= { 'v', 'e', 'r', 'b', 'o', 's', 'e', '\0' };
91 Char STRecho[]		= { 'e', 'c', 'h', 'o', '\0' };
92 Char STRpath[]		= { 'p', 'a', 't', 'h', '\0' };
93 Char STRprompt[]	= { 'p', 'r', 'o', 'm', 'p', 't', '\0' };
94 Char STRprompt2[]	= { 'p', 'r', 'o', 'm', 'p', 't', '2', '\0' };
95 Char STRprompt3[]	= { 'p', 'r', 'o', 'm', 'p', 't', '3', '\0' };
96 Char STRrprompt[]	= { 'r', 'p', 'r', 'o', 'm', 'p', 't', '\0' };
97 Char STRellipsis[]	= { 'e', 'l', 'l', 'i', 'p', 's', 'i', 's', '\0' };
98 Char STRcwd[]		= { 'c', 'w', 'd', '\0' };
99 Char STRowd[]		= { 'o', 'w', 'd', '\0' };
100 Char STRstar[]		= { '*', '\0' };
101 Char STRdot[]		= { '.', '\0' };
102 Char STRhistory[]	= { 'h', 'i', 's', 't', 'o', 'r', 'y', '\0' };
103 Char STRhistdup[]	= { 'h', 'i', 's', 't', 'd', 'u', 'p', '\0' };
104 Char STRhistfile[]	= { 'h', 'i', 's', 't', 'f', 'i', 'l', 'e', '\0' };
105 Char STRsource[]	= { 's', 'o', 'u', 'r', 'c', 'e', '\0' };
106 Char STRmh[]		= { '-', 'h', '\0' };
107 Char STRmhT[]		= { '-', 'h', 'T', '\0' };
108 Char STRmm[]		= { '-', 'm', '\0' };
109 Char STRmr[]		= { '-', 'r', '\0' };
110 Char STRmerge[]		= { 'm', 'e', 'r', 'g', 'e', '\0' };
111 Char STRtildothist[]	= { '~', '/', '.', 'h', 'i', 's', 't', 'o', 'r',
112 			    'y', '\0' };
113 
114 #ifdef NLS_CATALOGS
115 Char STRcatalog[]	= { 'c', 'a', 't', 'a', 'l', 'o', 'g', '\0' };
116 Char STRNLSPATH[]	= { 'N', 'L', 'S', 'P', 'A', 'T', 'H', '\0' };
117 #endif /* NLS_CATALOGS */
118 #ifdef KANJI
119 Char STRnokanji[]	= { 'n', 'o', 'k', 'a', 'n', 'j', 'i', '\0' };
120 # ifdef DSPMBYTE
121 Char STRdspmbyte[]	= { 'd', 's', 'p', 'm', 'b', 'y', 't', 'e', '\0' };
122 Char STRmmliteral[]	= { '-', '-', 'l', 'i', 't', 'e', 'r', 'a', 'l', '\0' };
123 Char STRKEUC[]		= { 'e', 'u', 'c', '\0' };
124 Char STRKSJIS[]		= { 's', 'j', 'i', 's', '\0' };
125 Char STRKBIG5[]         = { 'b', 'i', 'g', '5', '\0' };
126 Char STRKUTF8[]         = { 'u', 't', 'f', '8', '\0' };
127 #  ifdef MBYTEDEBUG	/* Sorry, use for beta testing */
128 Char STRmbytemap[]	= { 'm', 'b', 'y', 't', 'e', 'm', 'a', 'p', '\0' };
129 #  endif /* MBYTEMAP */
130 /* PATCH IDEA FROM Issei.Suzuki VERY THANKS */
131 /* dspmbyte autoset trap */
132 /* STRLANGEUCJP,STRLANGEUCJPB = EUCJP Trap */
133 /* STRLANGEUCKR,STRLANGEUCKRB = EUCKR Trap */
134 /* STRLANGEUCZH,STRLANGEUCZHB = EUCZH Trap */
135 /* STRLANGSJIS,STRLANGSJISB = SJIS Trap */
136 #  if defined(__uxps__) || defined(sgi)  || defined(aix) || defined(__CYGWIN__) || defined(linux)
137 Char STRLANGEUCJP[]	= { 'j', 'a', '_', 'J', 'P', '.', 'E', 'U', 'C', '\0' };
138 Char STRLANGEUCKR[]	= { 'k', 'o', '_', 'K', 'R', '.', 'E', 'U', 'C', '\0' };
139 #   if defined(__uxps__)
140 Char STRLANGEUCJPB[]	= { 'j', 'a', 'p', 'a', 'n', '\0' };
141 Char STRLANGEUCKRB[]	= { 'k', 'o', 'r', 'e', 'a', '\0' };
142 #   elif defined(linux)
143 Char STRLANGEUCJPB[]	= { 'j', 'a', '_', 'J', 'P', '.', 'u', 'j', 'i', 's',
144 			    '\0' };
145 Char STRLANGEUCKRB[]	= { 'k', 'o', '_', 'K', 'R', '.', 'e', 'u', 'c', '\0' };
146 #   elif defined(aix)
147 Char STRLANGEUCJPB[]	= { 'j', 'a', '_', 'J', 'P', '\0' };
148 Char STRLANGEUCKRB[]	= { 'k', 'o', '_', 'K', 'R', '\0' };
149 #   else
150 Char STRLANGEUCJPB[]	= { '\0' };
151 Char STRLANGEUCKRB[]	= { '\0' };
152 #   endif
153 Char STRLANGSJIS[]	= { 'j', 'a', '_', 'J', 'P', '.', 'S', 'J', 'I', 'S',
154 			    '\0' };
155 Char STRLANGSJISB[]	= { '\0' };
156 Char STRLANGBIG5[]	= { 'z', 'h', '_', 'T', 'W', '.', 'B', 'i', 'g', '5',
157 			    '\0' };
158 Char STRLANGEUCZH[]	= { '\0' };
159 Char STRLANGEUCZHB[]	= { '\0' };
160 #  elif defined(__FreeBSD__)
161 Char STRLANGEUCJP[]	= { 'j', 'a', '_', 'J', 'P', '.', 'e', 'u', 'c', 'J',
162 			    'P', '\0' };
163 Char STRLANGEUCJPB[]	= { 'j', 'a', '_', 'J', 'P', '.', 'E', 'U', 'C', '\0' };
164 Char STRLANGEUCKR[]	= { 'k', 'o', '_', 'K', 'R', '.', 'e', 'u', 'c', 'K',
165 			    'R', '\0' };
166 Char STRLANGEUCKRB[]	= { 'k', 'o', '_', 'K', 'R', '.', 'E', 'U', 'C', '\0' };
167 Char STRLANGEUCZH[]	= { 'z', 'h', '_', 'C', 'N', '.', 'e', 'u', 'c', 'C',
168 			    'N', '\0' };
169 Char STRLANGEUCZHB[]	= { 'z', 'h', '_', 'C', 'N', '.', 'E', 'U', 'C', '\0' };
170 Char STRLANGSJIS[]	= { 'j', 'a', '_', 'J', 'P', '.', 'S', 'J', 'I', 'S',
171 			    '\0' };
172 Char STRLANGSJISB[]	= { 'j', 'a', '_', 'J', 'P', '.', 'S', 'h', 'i', 'f',
173 			    't', '_', 'J', 'I', 'S', '\0' };
174 Char STRLANGBIG5[]	= { 'z', 'h', '_', 'T', 'W', '.', 'B', 'i', 'g', '5',
175 			    '\0' };
176 #  elif defined(__uxpm__)
177 Char STRLANGEUCJP[]	= { 'j', 'a', 'p', 'a', 'n', '\0' };
178 Char STRLANGEUCKR[]	= { 'k', 'o', 'r', 'e', 'a', '\0' };
179 Char STRLANGEUCZH[]	= { '\0' };
180 Char STRLANGEUCJPB[]	= { '\0' };
181 Char STRLANGEUCKRB[]	= { '\0' };
182 Char STRLANGEUCZHB[]	= { '\0' };
183 Char STRLANGSJIS[]	= { '\0' };
184 Char STRLANGSJISB[]	= { '\0' };
185 Char STRLANGBIG5[]	= { '\0' };
186 #  elif defined(SOLARIS2)
187 Char STRLANGEUCJP[]	= { 'j', 'a', '\0' };
188 Char STRLANGEUCKR[]	= { 'k', 'o', '\0' };
189 Char STRLANGEUCZH[]	= { '\0' };
190 Char STRLANGEUCJPB[]	= { 'j', 'a', 'p', 'a', 'n', 'e', 's', 'e', '\0' };
191 Char STRLANGEUCKRB[]	= { 'k', 'o', 'r', 'e', 'a', 'n', '\0' };
192 Char STRLANGEUCZHB[]	= { '\0' };
193 Char STRLANGSJIS[]	= { '\0' };
194 Char STRLANGSJISB[]	= { '\0' };
195 Char STRLANGBIG5[]	= { '\0' };
196 #  elif defined(hpux)
197 Char STRLANGEUCJP[]	= { 'j', 'a', '_', 'J', 'P', '.', 'e', 'u', 'c', 'J', 'P' };
198 Char STRLANGEUCKR[]	= { 'k', 'o', '_', 'K', 'R', '.', 'e', 'u', 'c', 'K', 'R' };
199 Char STRLANGEUCZH[]	= { '\0' };
200 Char STRLANGEUCJPB[]	= { '\0' };
201 Char STRLANGEUCKRB[]	= { '\0' };
202 Char STRLANGEUCZHB[]	= { '\0' };
203 Char STRLANGSJIS[]	= { '\0' };
204 Char STRLANGSJISB[]	= { '\0' };
205 Char STRLANGBIG5[]	= { '\0' };
206 #  else
207 Char STRLANGEUCJP[]	= { '\0' };
208 Char STRLANGEUCKR[]	= { '\0' };
209 Char STRLANGEUCZH[]	= { '\0' };
210 Char STRLANGEUCJPB[]	= { '\0' };
211 Char STRLANGEUCKRB[]	= { '\0' };
212 Char STRLANGEUCZHB[]	= { '\0' };
213 Char STRLANGSJIS[]	= { '\0' };
214 Char STRLANGSJISB[]	= { '\0' };
215 Char STRLANGBIG5[]	= { '\0' };
216 #  endif
217 # endif /* defined(DSPMBYTE) */
218 #endif
219 
220 Char STRtildotdirs[]	= { '~', '/', '.', 'c', 's', 'h', 'd', 'i', 'r',
221 			    's', '\0' };
222 Char STRdirsfile[]	= { 'd', 'i', 'r', 's', 'f', 'i', 'l', 'e', '\0' };
223 Char STRsavedirs[]	= { 's', 'a', 'v', 'e', 'd', 'i', 'r', 's', '\0' };
224 Char STRloginsh[]	= { 'l', 'o', 'g', 'i', 'n', 's', 'h', '\0' };
225 Char STRdirstack[]	= { 'd', 'i', 'r', 's', 't', 'a', 'c', 'k', '\0' };
226 Char STRargv[]		= { 'a', 'r', 'g', 'v', '\0' };
227 Char STRcommand[]	= { 'c', 'o', 'm', 'm', 'a', 'n', 'd', '\0' };
228 Char STRsavehist[]	= { 's', 'a', 'v', 'e', 'h', 'i', 's', 't', '\0' };
229 Char STRnormal[]	= { 'n', 'o', 'r', 'm', 'a', 'l', '\0' };
230 Char STRsldtlogout[]	= { '/', '.', 'l', 'o', 'g', 'o', 'u', 't', '\0' };
231 Char STRjobs[]		= { 'j', 'o', 'b', 's', '\0' };
232 Char STRdeftcshprompt[]	= { '%', '#', ' ', '\0' };
233 Char STRdefcshprompt[]	= { '%', '\0' };
234 Char STRmquestion[]	= { '%', 'R', '?' | QUOTE, ' ', '\0' };
235 Char STRKCORRECT[]	= { 'C', 'O', 'R', 'R', 'E', 'C', 'T', '>', '%', 'R',
236 			    ' ', '(', 'y', '|', 'n', '|', 'e', '|', 'a', ')',
237 			    '?' | QUOTE, ' ', '\0' };
238 Char STRunalias[]	= { 'u', 'n', 'a', 'l', 'i', 'a', 's', '\0' };
239 Char STRalias[]		= { 'a', 'l', 'i', 'a', 's', '\0' };
240 Char STRprecmd[]	= { 'p', 'r', 'e', 'c', 'm', 'd', '\0' };
241 Char STRjobcmd[]	= { 'j', 'o', 'b', 'c', 'm', 'd', '\0' }; /*GrP*/
242 Char STRpostcmd[]	= { 'p', 'o', 's', 't', 'c', 'm', 'd', '\0' };
243 Char STRcwdcmd[]	= { 'c', 'w', 'd', 'c', 'm', 'd', '\0' };
244 Char STRperiodic[]	= { 'p', 'e', 'r', 'i', 'o', 'd', 'i', 'c', '\0' };
245 Char STRtperiod[]	= { 't', 'p', 'e', 'r', 'i', 'o', 'd', '\0' };
246 Char STRmf[]		= { '-', 'f', '\0' };
247 Char STRml[]		= { '-', 'l', '\0' };
248 Char STRslash[]		= { '/', '\0' };
249 Char STRdotsl[]		= { '.', '/', '\0' };
250 Char STRdotdotsl[]	= { '.', '.', '/', '\0' };
251 Char STRcdpath[]	= { 'c', 'd', 'p', 'a', 't', 'h', '\0' };
252 Char STRcd[]		= { 'c', 'd', '\0' };
253 Char STRpushdtohome[]	= { 'p', 'u', 's', 'h', 'd', 't', 'o', 'h', 'o', 'm',
254 			    'e', '\0' };
255 Char STRpushdsilent[]	= { 'p', 'u', 's', 'h', 'd', 's', 'i', 'l', 'e', 'n',
256 			    't', '\0' };
257 Char STRdextract[]	= { 'd', 'e', 'x', 't', 'r', 'a', 'c', 't', '\0' };
258 Char STRdunique[]	= { 'd', 'u', 'n', 'i', 'q', 'u', 'e', '\0' };
259 Char STRsymlinks[]	= { 's', 'y', 'm', 'l', 'i', 'n', 'k', 's', '\0' };
260 Char STRignore[]	= { 'i', 'g', 'n', 'o', 'r', 'e', '\0' };
261 Char STRchase[]		= { 'c', 'h', 'a', 's', 'e', '\0' };
262 Char STRexpand[]	= { 'e', 'x', 'p', 'a', 'n', 'd', '\0' };
263 Char STRecho_style[]	= { 'e', 'c', 'h', 'o', '_', 's', 't', 'y', 'l', 'e',
264 			    '\0' };
265 Char STRbsd[]		= { 'b', 's', 'd', '\0' };
266 Char STRsysv[]		= { 's', 'y', 's', 'v', '\0' };
267 Char STRboth[]		= { 'b', 'o', 't', 'h', '\0' };
268 Char STRnone[]		= { 'n', 'o', 'n', 'e', '\0' };
269 Char STRPWD[]		= { 'P', 'W', 'D', '\0' };
270 Char STRor2[]		= { '|', '|', '\0' };
271 Char STRand2[]		= { '&', '&', '\0' };
272 Char STRor[]		= { '|', '\0' };
273 Char STRcaret[]		= { '^', '\0' };
274 Char STRand[]		= { '&', '\0' };
275 Char STRequal[]		= { '=', '\0' };
276 Char STRbang[]		= { '!', '\0' };
277 Char STRtilde[]		= { '~', '\0' };
278 Char STRLparen[]	= { '(', '\0' };
279 Char STRLbrace[]	= { '{', '\0' };
280 Char STRfakecom[]	= { '{', ' ', '.', '.', '.', ' ', '}', '\0' };
281 Char STRRbrace[]	= { '}', '\0' };
282 Char STRKPATH[]		= { 'P', 'A', 'T', 'H', '\0' };
283 Char STRdefault[]	= { 'd', 'e', 'f', 'a', 'u', 'l', 't', '\0' };
284 Char STRmn[]		= { '-', 'n', '\0' };
285 Char STRminus[]		= { '-', '\0' };
286 Char STRnoglob[]	= { 'n', 'o', 'g', 'l', 'o', 'b', '\0' };
287 Char STRnonomatch[]	= { 'n', 'o', 'n', 'o', 'm', 'a', 't', 'c', 'h', '\0' };
288 Char STRfakecom1[]	= { '`', ' ', '.', '.', '.', ' ', '`', '\0' };
289 Char STRampm[]		= { 'a', 'm', 'p', 'm', '\0' };
290 Char STRtime[]		= { 't', 'i', 'm', 'e', '\0' };
291 Char STRnotify[]	= { 'n', 'o', 't', 'i', 'f', 'y', '\0' };
292 Char STRprintexitvalue[] = { 'p', 'r', 'i', 'n', 't', 'e', 'x', 'i', 't', 'v',
293 			    'a', 'l', 'u', 'e', '\0' };
294 Char STRLparensp[]	= { '(', ' ', '\0' };
295 Char STRspRparen[]	= { ' ', ')', '\0' };
296 Char STRspace[]		= { ' ', '\0' };
297 Char STRspor2sp[]	= { ' ', '|', '|', ' ', '\0' };
298 Char STRspand2sp[]	= { ' ', '&', '&', ' ', '\0' };
299 Char STRsporsp[]	= { ' ', '|', ' ', '\0' };
300 Char STRsemisp[]	= { ';', ' ', '\0' };
301 Char STRsemi[]		= { ';', '\0' };
302 Char STRQQ[]		= { '"', '"', '\0' };
303 Char STRBB[]		= { '[', ']', '\0' };
304 Char STRspLarrow2sp[]	= { ' ', '<', '<', ' ', '\0' };
305 Char STRspLarrowsp[]	= { ' ', '<', ' ', '\0' };
306 Char STRspRarrow2[]	= { ' ', '>', '>', '\0' };
307 Char STRspRarrow[]	= { ' ', '>', '\0' };
308 Char STRgt[]		= { '>', '\0' };
309 Char STRsp3dots[]	= { ' ', '.', '.', '.', '\0' };
310 Char STRcent2[]		= { '%', '%', '\0' };
311 Char STRcentplus[]	= { '%', '+', '\0' };
312 Char STRcentminus[]	= { '%', '-', '\0' };
313 Char STRcenthash[]	= { '%', '#', '\0' };
314 #ifdef BSDJOBS
315 Char STRcontinue[]	= { 'c', 'o', 'n', 't', 'i', 'n', 'u', 'e', '\0' };
316 Char STRcontinue_args[] = { 'c', 'o', 'n', 't', 'i', 'n', 'u', 'e', '_', 'a',
317 			    'r', 'g', 's', '\0' };
318 Char STRunderpause[]	= { '_', 'p', 'a', 'u', 's', 'e', '\0' };
319 #endif
320 Char STRbackqpwd[]	= { '`', 'p', 'w', 'd', '`', '\0' };
321 #if defined(FILEC) && defined(TIOCSTI)
322 Char STRfilec[]		= { 'f', 'i', 'l', 'e', 'c', '\0' };
323 #endif /* FILEC && TIOCSTI */
324 Char STRhistchars[]	= { 'h', 'i', 's', 't', 'c', 'h', 'a', 'r', 's', '\0' };
325 Char STRpromptchars[]	= { 'p', 'r', 'o', 'm', 'p', 't', 'c', 'h', 'a', 'r',
326 			    's', '\0' };
327 Char STRhistlit[]	= { 'h', 'i', 's', 't', 'l', 'i', 't', '\0' };
328 Char STRKUSER[]		= { 'U', 'S', 'E', 'R', '\0' };
329 Char STRLOGNAME[]	= { 'L', 'O', 'G', 'N', 'A', 'M', 'E', '\0' };
330 Char STRKGROUP[]	= { 'G', 'R', 'O', 'U', 'P', '\0' };
331 Char STRwordchars[]	= { 'w', 'o', 'r', 'd', 'c', 'h', 'a', 'r', 's', '\0' };
332 Char STRKTERM[]		= { 'T', 'E', 'R', 'M', '\0' };
333 Char STRKHOME[]		= { 'H', 'O', 'M', 'E', '\0' };
334 Char STRbackslash_quote[] = { 'b', 'a', 'c', 'k', 's', 'l', 'a', 's', 'h', '_',
335 			     'q', 'u', 'o', 't', 'e', '\0' };
336 Char STRRparen[]	= { ')', '\0' };
337 Char STRmail[]		= { 'm', 'a', 'i', 'l', '\0' };
338 #ifndef HAVENOUTMP
339 Char STRwatch[]		= { 'w', 'a', 't', 'c', 'h', '\0' };
340 #endif /* HAVENOUTMP */
341 
342 Char STRsldottcshrc[]	= { '/', '.', 't', 'c', 's', 'h', 'r', 'c', '\0' };
343 Char STRsldotcshrc[]	= { '/', '.', 'c', 's', 'h', 'r', 'c', '\0' };
344 Char STRsldotlogin[]	= { '/', '.', 'l', 'o', 'g', 'i', 'n', '\0' };
345 Char STRignoreeof[]	= { 'i', 'g', 'n', 'o', 'r', 'e', 'e', 'o', 'f', '\0' };
346 Char STRnoclobber[]	= { 'n', 'o', 'c', 'l', 'o', 'b', 'b', 'e', 'r', '\0' };
347 Char STRhelpcommand[]	= { 'h', 'e', 'l', 'p', 'c', 'o', 'm', 'm', 'a', 'n',
348 			    'd', '\0' };
349 Char STRfignore[]	= { 'f', 'i', 'g', 'n', 'o', 'r', 'e', '\0' };
350 Char STRrecexact[]	= { 'r', 'e', 'c', 'e', 'x', 'a', 'c', 't', '\0' };
351 Char STRlistmaxrows[]	= { 'l', 'i', 's', 't', 'm', 'a', 'x', 'r', 'o', 'w',
352 			    's', '\0' };
353 Char STRlistmax[]	= { 'l', 'i', 's', 't', 'm', 'a', 'x', '\0' };
354 Char STRlistlinks[]	= { 'l', 'i', 's', 't', 'l', 'i', 'n', 'k', 's', '\0' };
355 Char STRDING[]		= { 'D', 'I', 'N', 'G', '!', '\0' };
356 Char STRQNULL[]		= { '\0' | QUOTE, '\0' };
357 Char STRcorrect[]	= { 'c', 'o', 'r', 'r', 'e', 'c', 't', '\0' };
358 Char STRcmd[]		= { 'c', 'm', 'd', '\0' };
359 Char STRall[]		= { 'a', 'l', 'l', '\0' };
360 Char STRerase[]		= { 'e', 'r', 'a', 's', 'e', '\0' };
361 Char STRprev[]		= { 'p', 'r', 'e', 'v', '\0' };
362 Char STRcomplete[]	= { 'c', 'o', 'm', 'p', 'l', 'e', 't', 'e', '\0' };
363 Char STRenhance[]	= { 'e', 'n', 'h', 'a', 'n', 'c', 'e', '\0' };
364 Char STRautoexpand[]	= { 'a', 'u', 't', 'o', 'e', 'x', 'p', 'a', 'n', 'd',
365 			    '\0' };
366 Char STRautocorrect[]	= { 'a', 'u', 't', 'o', 'c', 'o', 'r', 'r', 'e', 'c',
367 			    't', '\0' };
368 Char STRautolist[]	= { 'a', 'u', 't', 'o', 'l', 'i', 's', 't', '\0' };
369 Char STRbeepcmd[]	= { 'b', 'e', 'e', 'p', 'c', 'm', 'd', '\0' };
370 Char STRmatchbeep[]	= { 'm', 'a', 't', 'c', 'h', 'b', 'e', 'e', 'p', '\0' };
371 Char STRnomatch[]	= { 'n', 'o', 'm', 'a', 't', 'c', 'h', '\0' };
372 Char STRambiguous[]	= { 'a', 'm', 'b', 'i', 'g', 'u', 'o', 'u', 's', '\0' };
373 Char STRnotunique[]	= { 'n', 'o', 't', 'u', 'n', 'i', 'q', 'u', 'e', '\0' };
374 Char STRret[]		= { '\n', '\0' };
375 Char STRnobeep[]	= { 'n', 'o', 'b', 'e', 'e', 'p', '\0' };
376 Char STRnoding[]	= { 'n', 'o', 'd', 'i', 'n', 'g', '\0' };
377 Char STRnoambiguous[]	= { 'n', 'o', 'a', 'm', 'b', 'i', 'g', 'u', 'o', 'u',
378 			    's', '\0' };
379 Char STRvisiblebell[]	= { 'v', 'i', 's', 'i', 'b', 'l', 'e', 'b', 'e', 'l',
380 			    'l', '\0' };
381 Char STRrecognize_only_executables[] = { 'r', 'e', 'c', 'o', 'g', 'n', 'i',
382 					 'z', 'e', '_', 'o', 'n', 'l', 'y',
383 					 '_', 'e', 'x', 'e', 'c', 'u', 't',
384 					 'a', 'b', 'l', 'e', 's', '\0' };
385 Char STRinputmode[]	= { 'i', 'n', 'p', 'u', 't', 'm', 'o', 'd', 'e',
386 			    '\0' };
387 Char STRoverwrite[]	= { 'o', 'v', 'e', 'r', 'w', 'r', 'i', 't', 'e',
388 			    '\0' };
389 Char STRinsert[]	= { 'i', 'n', 's', 'e', 'r', 't', '\0' };
390 Char STRnohup[]		= { 'n', 'o', 'h', 'u', 'p', '\0' };
391 Char STRhup[]		= { 'h', 'u', 'p', '\0' };
392 Char STRnice[]		= { 'n', 'i', 'c', 'e', '\0' };
393 Char STRthen[]		= { 't', 'h', 'e', 'n', '\0' };
394 Char STReof[]		= { '^', 'D', '\b', '\b', '\0' };
395 Char STRlistjobs[]	= { 'l', 'i', 's', 't', 'j', 'o', 'b', 's', '\0' };
396 Char STRlistflags[]	= { 'l', 'i', 's', 't', 'f', 'l', 'a', 'g', 's', '\0' };
397 Char STRlong[]		= { 'l', 'o', 'n', 'g', '\0' };
398 Char STRwho[]		= { 'w', 'h', 'o', '\0' };
399 Char STRsched[]		= { 's', 'c', 'h', 'e', 'd', '\0' };
400 Char STRrmstar[]	= { 'r', 'm', 's', 't', 'a', 'r', '\0' };
401 Char STRrm[]		= { 'r', 'm', '\0' };
402 
403 Char STRimplicitcd[] = { 'i', 'm', 'p', 'l', 'i', 'c', 'i', 't',
404                          'c', 'd', '\0' };
405 Char STRkillring[] 	= { 'k', 'i', 'l', 'l', 'r', 'i', 'n', 'g', '\0' };
406 Char STRkilldup[] 	= { 'k', 'i', 'l', 'l', 'd', 'u', 'p', '\0' };
407 Char STRshlvl[]		= { 's', 'h', 'l', 'v', 'l', '\0' };
408 Char STRKSHLVL[]	= { 'S', 'H', 'L', 'V', 'L', '\0' };
409 Char STRLANG[]		= { 'L', 'A', 'N', 'G', '\0' };
410 Char STRLC_CTYPE[]	= { 'L', 'C', '_', 'C', 'T', 'Y', 'P', 'E' ,'\0' };
411 Char STRLC_NUMERIC[]	= { 'L', 'C', '_', 'N', 'U', 'M', 'E', 'R', 'I',
412 			    'C', '\0' };
413 Char STRLC_TIME[]	= { 'L', 'C', '_', 'T', 'I', 'M', 'E', '\0' };
414 Char STRLC_COLLATE[]	= { 'L', 'C', '_', 'C', 'O', 'L', 'L', 'A', 'T',
415 			    'E', '\0' };
416 Char STRLC_MESSAGES[]	= { 'L', 'C', '_', 'M', 'E', 'S', 'S', 'A', 'G',
417 			    'E', 'S', '\0' };
418 Char STRLC_MONETARY[]	= { 'L', 'C', '_', 'M', 'O', 'N', 'E', 'T', 'A',
419 			    'R', 'Y', '\0' };
420 Char STRNOREBIND[] 	= { 'N', 'O', 'R', 'E', 'B', 'I', 'N', 'D', '\0' };
421 
422 #if defined(SIG_WINDOW) || defined (_VMS_POSIX)
423 /* atp - problem with declaration of str{lines,columns} in sh.func.c (1277) */
424 Char STRLINES[]		= { 'L', 'I', 'N', 'E', 'S', '\0'};
425 Char STRCOLUMNS[]	= { 'C', 'O', 'L', 'U', 'M', 'N', 'S', '\0'};
426 Char STRTERMCAP[]	= { 'T', 'E', 'R', 'M', 'C', 'A', 'P', '\0'};
427 #endif /* SIG_WINDOW  || _VMS_POSIX */
428 
429 #ifdef WARP
430 Char STRwarp[]		= { 'w', 'a', 'r', 'p', '\0' };
431 #endif /* WARP */
432 
433 #ifdef apollo
434 Char STRSYSTYPE[] 	= { 'S', 'Y', 'S', 'T', 'Y', 'P', 'E', '\0' };
435 Char STRoid[] 		= { 'o', 'i', 'd', '\0' };
436 Char STRbsd43[] 	= { 'b', 's', 'd', '4', '.', '3', '\0' };
437 Char STRsys53[] 	= { 's', 'y', 's', '5', '.', '3', '\0' };
438 Char STRver[]		= { 'v', 'e', 'r', '\0' };
439 #endif /* apollo */
440 
441 #ifndef IS_ASCII
442 Char STRwarnebcdic[]    = { 'w', 'a', 'r', 'n', 'e', 'b', 'c', 'd', 'i', 'c', '\0' };
443 #endif
444 
445 #ifdef COLOR_LS_F
446 Char STRlsmF[]		= { 'l', 's', '-', 'F', '\0' };
447 Char STRcolor[]		= { 'c', 'o', 'l', 'o', 'r', '\0' };
448 #ifdef BSD_STYLE_COLORLS
449 Char STRmmcolormauto[]	= { '-', 'G', '\0' };
450 #else
451 Char STRmmcolormauto[]	= { '-', '-', 'c', 'o', 'l', 'o', 'r', '=', 'a', 'u', 't', 'o', '\0' };
452 #endif /* BSD_STYLE_COLORLS */
453 Char STRLS_COLORS[]	= { 'L', 'S', '_', 'C', 'O', 'L', 'O', 'R', 'S', '\0' };
454 #endif /* COLOR_LS_F */
455 
456 Char STRls[]		= { 'l', 's', '\0' };
457 
458 Char STRup[]		= { 'u', 'p', '\0' };
459 Char STRdown[]		= { 'd', 'o', 'w', 'n', '\0' };
460 Char STRleft[]		= { 'l', 'e', 'f', 't', '\0' };
461 Char STRright[]		= { 'r', 'i', 'g', 'h', 't', '\0' };
462 Char STRend[]           = { 'e', 'n', 'd', '\0' };
463 
464 #ifdef COLORCAT
465 Char STRcolorcat[]	= { 'c', 'o', 'l', 'o', 'r', 'c', 'a', 't', '\0' };
466 #endif
467 
468 Char STRshwspace[]	= { ' ', '\t', '\0' };
469 Char STRshwordsep[]	= { ' ', '\t', '&', '|', ';', '<', '>', '(', ')', '\0' };
470 Char STRrepeat[]	= { 'r', 'e', 'p', 'e', 'a', 't', '\0' };
471