Fix typo in license headers
[oweals/cde.git] / cde / programs / dtksh / ksh93 / src / cmd / ksh93 / data / options.c
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these libraries and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /* $XConsortium: options.c /main/3 1995/11/01 16:33:24 rswiston $ */
24 /***************************************************************
25 *                                                              *
26 *                      AT&T - PROPRIETARY                      *
27 *                                                              *
28 *        THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF        *
29 *                    AT&T BELL LABORATORIES                    *
30 *         AND IS NOT TO BE DISCLOSED OR USED EXCEPT IN         *
31 *            ACCORDANCE WITH APPLICABLE AGREEMENTS             *
32 *                                                              *
33 *                Copyright (c) 1995 AT&T Corp.                 *
34 *              Unpublished & Not for Publication               *
35 *                     All Rights Reserved                      *
36 *                                                              *
37 *       The copyright notice above does not evidence any       *
38 *      actual or intended publication of such source code      *
39 *                                                              *
40 *               This software was created by the               *
41 *           Advanced Software Technology Department            *
42 *                    AT&T Bell Laboratories                    *
43 *                                                              *
44 *               For further information contact                *
45 *                    {research,attmail}!dgk                    *
46 *                                                              *
47 ***************************************************************/
48
49 /* : : generated by proto : : */
50
51 #if !defined(__PROTO__)
52 #if defined(__STDC__) || defined(__cplusplus) || defined(_proto) || defined(c_plusplus)
53 #if defined(__cplusplus)
54 #define __MANGLE__      "C"
55 #else
56 #define __MANGLE__
57 #endif
58 #define __STDARG__
59 #define __PROTO__(x)    x
60 #define __OTORP__(x)
61 #define __PARAM__(n,o)  n
62 #if !defined(__STDC__) && !defined(__cplusplus)
63 #if !defined(c_plusplus)
64 #define const
65 #endif
66 #define signed
67 #define void            int
68 #define volatile
69 #define __V_            char
70 #else
71 #define __V_            void
72 #endif
73 #else
74 #define __PROTO__(x)    ()
75 #define __OTORP__(x)    x
76 #define __PARAM__(n,o)  o
77 #define __MANGLE__
78 #define __V_            char
79 #define const
80 #define signed
81 #define void            int
82 #define volatile
83 #endif
84 #if defined(__cplusplus) || defined(c_plusplus)
85 #define __VARARG__      ...
86 #else
87 #define __VARARG__
88 #endif
89 #if defined(__STDARG__)
90 #define __VA_START__(p,a)       va_start(p,a)
91 #else
92 #define __VA_START__(p,a)       va_start(p)
93 #endif
94 #endif
95 #include        <shell.h>
96 #include        "FEATURE/options"
97 #include        "name.h"
98 #include        "shtable.h"
99
100 /*
101  * This is the list of invocation and set options
102  * This list must be in in ascii sorted order
103  */
104
105 #define bit32(x)        ((x)&0xffff?bit16(x):16+bit16((x)>>16))
106 #define bit16(x)        ((x)&0xff?bit8(x):8+bit8((x)>>8))
107 #define bit8(x)         ((x)&0xf?bit4(x):4+bit4((x)>>4))
108 #define bit4(x)         ((x)&0x3?bit2(x):2+bit2((x)>>2))
109 #define bit2(x)         ((x)&1?0:1)
110
111 const Shtable_t shtab_options[] =
112 {
113         "allexport",            bit32(SH_ALLEXPORT),
114         "bgnice",               bit32(SH_BGNICE),
115         "emacs",                bit32(SH_EMACS),
116         "errexit",              bit32(SH_ERREXIT),
117         "gmacs",                bit32(SH_GMACS),
118         "ignoreeof",            bit32(SH_IGNOREEOF),
119         "interactive",          bit32(SH_INTERACTIVE),
120         "keyword",              bit32(SH_KEYWORD),
121         "markdirs",             bit32(SH_MARKDIRS),
122         "monitor",              bit32(SH_MONITOR),
123         "noexec",               bit32(SH_NOEXEC),
124         "noclobber",            bit32(SH_NOCLOBBER),
125         "noglob",               bit32(SH_NOGLOB),
126         "nolog",                bit32(SH_NOLOG),
127         "notify",               bit32(SH_NOTIFY),
128         "nounset",              bit32(SH_NOUNSET),
129         "privileged",           bit32(SH_PRIVILEGED),
130         "restricted",           bit32(SH_RESTRICTED),
131         "trackall",             bit32(SH_TRACKALL),
132         "verbose",              bit32(SH_VERBOSE),
133         "vi",                   bit32(SH_VI),
134         "viraw",                bit32(SH_VIRAW),
135         "xtrace",               bit32(SH_XTRACE),
136         "",                     0
137 };
138
139 const Shtable_t shtab_attributes[] =
140 {
141         {"-nnameref",   NV_REF},
142         {"-xexport",    NV_EXPORT},
143         {"-rreadonly",  NV_RDONLY},
144         {"-ttagged",    NV_TAGGED},
145         {"-Eexponential",(NV_INTEGER|NV_DOUBLE|NV_EXPNOTE)},
146         {"-Ffloat",     (NV_INTEGER|NV_DOUBLE)},
147         {"++short",     (NV_INTEGER|NV_SHORT)},
148         {"++unsigned",  (NV_INTEGER|NV_UNSIGN)},
149         {"-iinteger",   NV_INTEGER},
150         {"-Hfilename",  NV_HOST},
151         {"-llowercase", NV_UTOL},
152         {"-Zzerofill",  NV_ZFILL},
153         {"-Lleftjust",  NV_LJUST},
154         {"-Rrightjust", NV_RJUST},
155         {"-uuppercase", NV_LTOU},
156         {"-Aarray",     NV_ARRAY},
157         {"",            0}
158 };