1994-05-27 12:39:25 +00:00
|
|
|
/*
|
1996-05-05 19:01:13 +00:00
|
|
|
* Copyright (c) 1983, 1993, 1994
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
1994-05-27 12:39:25 +00:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2014-02-17 22:27:32 +00:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1994-05-27 12:39:25 +00:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
1996-05-05 19:01:13 +00:00
|
|
|
* from: @(#)gettytab.h 8.2 (Berkeley) 3/30/94
|
1999-08-28 00:22:10 +00:00
|
|
|
* $FreeBSD$
|
1994-05-27 12:39:25 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Getty description definitions.
|
|
|
|
*/
|
|
|
|
struct gettystrs {
|
1996-05-05 19:01:13 +00:00
|
|
|
const char *field; /* name to lookup in gettytab */
|
1994-05-27 12:39:25 +00:00
|
|
|
char *defalt; /* value we find by looking in defaults */
|
|
|
|
char *value; /* value that we find there */
|
|
|
|
};
|
|
|
|
|
|
|
|
struct gettynums {
|
1996-05-05 19:01:13 +00:00
|
|
|
const char *field; /* name to lookup */
|
1994-05-27 12:39:25 +00:00
|
|
|
long defalt; /* number we find in defaults */
|
|
|
|
long value; /* number we find there */
|
|
|
|
int set; /* we actually got this one */
|
|
|
|
};
|
|
|
|
|
|
|
|
struct gettyflags {
|
1996-05-05 19:01:13 +00:00
|
|
|
const char *field; /* name to lookup */
|
1994-05-27 12:39:25 +00:00
|
|
|
char invrt; /* name existing in gettytab --> false */
|
|
|
|
char defalt; /* true/false in defaults */
|
|
|
|
char value; /* true/false flag */
|
|
|
|
char set; /* we found it */
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* String values.
|
|
|
|
*/
|
|
|
|
#define NX gettystrs[0].value
|
|
|
|
#define CL gettystrs[1].value
|
|
|
|
#define IM gettystrs[2].value
|
|
|
|
#define LM gettystrs[3].value
|
|
|
|
#define ER gettystrs[4].value
|
|
|
|
#define KL gettystrs[5].value
|
|
|
|
#define ET gettystrs[6].value
|
|
|
|
#define PC gettystrs[7].value
|
|
|
|
#define TT gettystrs[8].value
|
|
|
|
#define EV gettystrs[9].value
|
|
|
|
#define LO gettystrs[10].value
|
|
|
|
#define HN gettystrs[11].value
|
|
|
|
#define HE gettystrs[12].value
|
|
|
|
#define IN gettystrs[13].value
|
|
|
|
#define QU gettystrs[14].value
|
|
|
|
#define XN gettystrs[15].value
|
|
|
|
#define XF gettystrs[16].value
|
|
|
|
#define BK gettystrs[17].value
|
|
|
|
#define SU gettystrs[18].value
|
|
|
|
#define DS gettystrs[19].value
|
|
|
|
#define RP gettystrs[20].value
|
|
|
|
#define FL gettystrs[21].value
|
|
|
|
#define WE gettystrs[22].value
|
|
|
|
#define LN gettystrs[23].value
|
1996-05-05 19:01:13 +00:00
|
|
|
#define Lo gettystrs[24].value
|
1996-11-13 01:06:40 +00:00
|
|
|
#define PP gettystrs[25].value
|
1997-02-02 14:24:57 +00:00
|
|
|
#define IF gettystrs[26].value
|
|
|
|
#define IC gettystrs[27].value
|
|
|
|
#define AC gettystrs[28].value
|
1999-04-04 04:36:50 +00:00
|
|
|
#define AL gettystrs[29].value
|
2001-06-07 13:53:23 +00:00
|
|
|
#define DF gettystrs[30].value
|
1994-05-27 12:39:25 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Numeric definitions.
|
|
|
|
*/
|
|
|
|
#define IS gettynums[0].value
|
|
|
|
#define OS gettynums[1].value
|
|
|
|
#define SP gettynums[2].value
|
|
|
|
#define ND gettynums[3].value
|
|
|
|
#define CD gettynums[4].value
|
|
|
|
#define TD gettynums[5].value
|
|
|
|
#define FD gettynums[6].value
|
|
|
|
#define BD gettynums[7].value
|
|
|
|
#define TO gettynums[8].value
|
|
|
|
#define F0 gettynums[9].value
|
|
|
|
#define F0set gettynums[9].set
|
|
|
|
#define F1 gettynums[10].value
|
|
|
|
#define F1set gettynums[10].set
|
|
|
|
#define F2 gettynums[11].value
|
|
|
|
#define F2set gettynums[11].set
|
|
|
|
#define PF gettynums[12].value
|
1996-05-05 19:01:13 +00:00
|
|
|
#define C0 gettynums[13].value
|
|
|
|
#define C0set gettynums[13].set
|
|
|
|
#define C1 gettynums[14].value
|
|
|
|
#define C1set gettynums[14].set
|
|
|
|
#define C2 gettynums[15].value
|
|
|
|
#define C2set gettynums[15].set
|
|
|
|
#define I0 gettynums[16].value
|
|
|
|
#define I0set gettynums[16].set
|
|
|
|
#define I1 gettynums[17].value
|
|
|
|
#define I1set gettynums[17].set
|
|
|
|
#define I2 gettynums[18].value
|
|
|
|
#define I2set gettynums[18].set
|
|
|
|
#define L0 gettynums[19].value
|
|
|
|
#define L0set gettynums[19].set
|
|
|
|
#define L1 gettynums[20].value
|
|
|
|
#define L1set gettynums[20].set
|
|
|
|
#define L2 gettynums[21].value
|
|
|
|
#define L2set gettynums[21].set
|
|
|
|
#define O0 gettynums[22].value
|
|
|
|
#define O0set gettynums[22].set
|
|
|
|
#define O1 gettynums[23].value
|
|
|
|
#define O1set gettynums[23].set
|
|
|
|
#define O2 gettynums[24].value
|
|
|
|
#define O2set gettynums[24].set
|
1996-12-31 01:30:38 +00:00
|
|
|
#define DE gettynums[25].value
|
1997-02-02 14:24:57 +00:00
|
|
|
#define RTset gettynums[26].set
|
|
|
|
#define RT gettynums[26].value
|
|
|
|
#define CT gettynums[27].value
|
|
|
|
#define DC gettynums[28].value
|
1994-05-27 12:39:25 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Boolean values.
|
|
|
|
*/
|
|
|
|
#define HT gettyflags[0].value
|
|
|
|
#define NL gettyflags[1].value
|
|
|
|
#define EP gettyflags[2].value
|
|
|
|
#define EPset gettyflags[2].set
|
|
|
|
#define OP gettyflags[3].value
|
|
|
|
#define OPset gettyflags[3].set
|
|
|
|
#define AP gettyflags[4].value
|
|
|
|
#define APset gettyflags[4].set
|
|
|
|
#define EC gettyflags[5].value
|
|
|
|
#define CO gettyflags[6].value
|
|
|
|
#define CB gettyflags[7].value
|
|
|
|
#define CK gettyflags[8].value
|
|
|
|
#define CE gettyflags[9].value
|
|
|
|
#define PE gettyflags[10].value
|
|
|
|
#define RW gettyflags[11].value
|
|
|
|
#define XC gettyflags[12].value
|
|
|
|
#define LC gettyflags[13].value
|
|
|
|
#define UC gettyflags[14].value
|
|
|
|
#define IG gettyflags[15].value
|
|
|
|
#define PS gettyflags[16].value
|
|
|
|
#define HC gettyflags[17].value
|
|
|
|
#define UB gettyflags[18].value
|
|
|
|
#define AB gettyflags[19].value
|
|
|
|
#define DX gettyflags[20].value
|
|
|
|
#define NP gettyflags[21].value
|
2003-06-10 18:30:41 +00:00
|
|
|
#define NPset gettyflags[21].set
|
1996-05-05 19:01:13 +00:00
|
|
|
#define MB gettyflags[22].value
|
2000-07-31 23:47:57 +00:00
|
|
|
#define HW gettyflags[23].value
|
|
|
|
#define NC gettyflags[24].value
|
2003-01-19 20:59:52 +00:00
|
|
|
#define PL gettyflags[25].value
|