/* cmd_opts.h, c\include
* structure definition for command line options
*/
struct options
{
char s; /* valid switch letter */
int arg_flg; /* flag to indicate an
argument is required */
char ***poptv; /* pointer to option's
value vector */
} ;