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