home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_08_03 / 8n03025a < prev    next >
Text File  |  1990-03-20  |  299b  |  14 lines

  1. *****Listing 1*****
  2.  
  3. /* cmd_opts.h, c\include
  4. *  structure definition for command line options
  5. */
  6. struct options 
  7. {
  8.     char    s;        /* valid switch letter */
  9.     int    arg_flg;    /* flag to indicate an
  10.                    argument is required */
  11.     char    ***poptv;    /* pointer to option's
  12.                    value vector */
  13. } ;
  14.