Go to the first, previous, next, last section, table of contents.


HAVE_OPT( <NAME> ) - Have this option?

This macro yields true if the option has been specified in any fashion at all. It is used thus:

if (HAVE_OPT( NAME )) {
    <do-things-associated-with-opt-name>;
}


Go to the first, previous, next, last section, table of contents.