Go to the first, previous, next, last section, table of contents.
These option attributes do not fit well with other categories.
TEMPL_DIRS is a settable option for AutoGen, so a macro named
SET_OPT_TEMPL_DIRS(a) appears in the interface file.  This
attribute interacts with the documentation attribute.
cpio(1) has three options -o, -i,
and -p that define the operational mode of the program
(create, extract and pass-through, respectively).
They form an equivalence class from which one and only one member must
appear on the command line.  If cpio were an AutoOpt-ed program,
then each of these option definitions would contain:
equivalence = create;and the program would be able to determine the operating mode with code that worked something like this:
switch (WHICH_IDX_CREATE) {
case INDEX_OPT_CREATE:       ...
case INDEX_OPT_EXTRACT:      ...
case INDEX_OPT_PASS_THROUGH: ...
default:    /* cannot happen */
}
settable, call_proc and flag_code.  settable
must be and is only specified if call_proc or flag_code
has been specified.  When present, the descrip attribute will be
displayed only when the --help option has been specified.  It
will be displayed flush to the left hand margin and may consist of one
or more lines of text.  The name of the option will not be printed.
Go to the first, previous, next, last section, table of contents.