home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 1 / GoldFishApril1994_CD1.img / d1xx / d102 / dbug / getopt.c < prev    next >
C/C++ Source or Header  |  1987-09-06  |  3KB  |  113 lines

  1. /*
  2.  * From std-unix@ut-sally.UUCP (Moderator, John Quarterman) Sun Nov  3 14:34:15 1985
  3.  * Relay-Version: version B 2.10.3 4.3bsd-beta 6/6/85; site gatech.CSNET
  4.  * Posting-Version: version B 2.10.2 9/18/84; site ut-sally.UUCP
  5.  * Path: gatech!akgua!mhuxv!mhuxt!mhuxr!ulysses!allegra!mit-eddie!genrad!panda!talcott!harvard!seismo!ut-sally!std-unix
  6.  * From: std-unix@ut-sally.UUCP (Moderator, John Quarterman)
  7.  * Newsgroups: mod.std.unix
  8.  * Subject: public domain AT&T getopt source
  9.  * Message-ID: <3352@ut-sally.UUCP>
  10.  * Date: 3 Nov 85 19:34:15 GMT
  11.  * Date-Received: 4 Nov 85 12:25:09 GMT
  12.  * Organization: IEEE/P1003 Portable Operating System Environment Committee
  13.  * Lines: 91
  14.  * Approved: jsq@ut-sally.UUCP
  15.  * 
  16.  * Here's something you've all been waiting for:  the AT&T public domain
  17.  * source for getopt(3).  It is the code which was given out at the 1985
  18.  * UNIFORUM conference in Dallas.  I obtained it by electronic mail
  19.  * directly from AT&T.  The people there assure me that it is indeed
  20.  * in the public domain.
  21.  * 
  22.  * There is no manual page.  That is because the one they gave out at
  23.  * UNIFORUM was slightly different from the current System V Release 2
  24.  * manual page.  The difference apparently involved a note about the
  25.  * famous rules 5 and 6, recommending using white space between an option
  26.  * and its first argument, and not grouping options that have arguments.
  27.  * Getopt itself is currently lenient about both of these things White
  28.  * space is allowed, but not mandatory, and the last option in a group can
  29.  * have an argument.  That particular version of the man page evidently
  30.  * has no official existence, and my source at AT&T did not send a copy.
  31.  * The current SVR2 man page reflects the actual behavor of this getopt.
  32.  * However, I am not about to post a copy of anything licensed by AT&T.
  33.  * 
  34.  * I will submit this source to Berkeley as a bug fix.
  35.  * 
  36.  * I, personally, make no claims or guarantees of any kind about the
  37.  * following source.  I did compile it to get some confidence that
  38.  * it arrived whole, but beyond that you're on your own.
  39.  * 
  40.  */
  41.  
  42. /*LINTLIBRARY*/
  43.  
  44. #ifndef NULL
  45. #define NULL    0
  46. #endif
  47.  
  48. #ifndef EOF
  49. #define EOF    (-1)
  50. #endif
  51.  
  52. #define ERR(s, c)    if(opterr){\
  53.     extern int strlen(), write();\
  54.     char errbuf[2];\
  55.     errbuf[0] = c; errbuf[1] = '\n';\
  56.     (void) write(2, argv[0], (unsigned)strlen(argv[0]));\
  57.     (void) write(2, s, (unsigned)strlen(s));\
  58.     (void) write(2, errbuf, (unsigned)2);}
  59.  
  60. extern int strcmp();
  61. extern char *strchr();
  62.  
  63. int    opterr = 1;
  64. int    optind = 1;
  65. int    optopt;
  66. char    *optarg;
  67.  
  68. int
  69. getopt(argc, argv, opts)
  70. int    argc;
  71. char    **argv, *opts;
  72. {
  73.     static int sp = 1;
  74.     register int c;
  75.     register char *cp;
  76.  
  77.     if(sp == 1)
  78.         if(optind >= argc ||
  79.            argv[optind][0] != '-' || argv[optind][1] == '\0')
  80.             return(EOF);
  81.         else if(strcmp(argv[optind], "--") == NULL) {
  82.             optind++;
  83.             return(EOF);
  84.         }
  85.     optopt = c = argv[optind][sp];
  86.     if(c == ':' || (cp=strchr(opts, c)) == NULL) {
  87.         ERR(": illegal option -- ", c);
  88.         if(argv[optind][++sp] == '\0') {
  89.             optind++;
  90.             sp = 1;
  91.         }
  92.         return('?');
  93.     }
  94.     if(*++cp == ':') {
  95.         if(argv[optind][sp+1] != '\0')
  96.             optarg = &argv[optind++][sp+1];
  97.         else if(++optind >= argc) {
  98.             ERR(": option requires an argument -- ", c);
  99.             sp = 1;
  100.             return('?');
  101.         } else
  102.             optarg = argv[optind++];
  103.         sp = 1;
  104.     } else {
  105.         if(argv[optind][++sp] == '\0') {
  106.             sp = 1;
  107.             optind++;
  108.         }
  109.         optarg = NULL;
  110.     }
  111.     return(c);
  112. }
  113.