home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_09_06 / 9n06076b < prev    next >
Text File  |  1990-03-01  |  371b  |  17 lines

  1.  
  2. Listing 2:  New getopt() Command Line Processing
  3. ================================================
  4.  
  5. while ((option = getopt (argc, argv, optstring)) != NONOPT) ||
  6.        (optarg != NULL)) {
  7.     switch (option) {
  8.     case 'a': ...
  9.     case 'b': ...
  10.     ...
  11.     case '?': ... error ...
  12.     case NONOPT: ... process optarg ...
  13.     default:  break ;
  14.     }
  15. }
  16.  
  17.