home *** CD-ROM | disk | FTP | other *** search
/ Carousel / CAROUSEL.cdr / mactosh / lang / bison.sit / getopt.c < prev    next >
Text File  |  1988-11-19  |  1KB  |  70 lines

  1. /* 
  2.  * I think I got this from John Bruner's "uw" distribution.
  3.  * Needed for the Macintosh.
  4.  * Earle Horton
  5.  */
  6. /*LINTLIBRARY*/
  7. #define NULL    0
  8. #define EOF    (-1)
  9. #define ERR(s, c)    if(opterr){\
  10.     extern int strlen(), write();\
  11.     char errbuf[2];\
  12.     errbuf[0] = c; errbuf[1] = '\n';\
  13.     (void) write(2, argv[0], (unsigned)strlen(argv[0]));\
  14.     (void) write(2, s, (unsigned)strlen(s));\
  15.     (void) write(2, errbuf, 2);}
  16.  
  17. extern int strcmp();
  18. extern char *strchr();
  19.  
  20. int    opterr = 1;
  21. int    optind = 1;
  22. int    optopt;
  23. char    *optarg;
  24.  
  25. int
  26. getopt(argc, argv, opts)
  27. int    argc;
  28. char    **argv, *opts;
  29. {
  30.     static int sp = 1;
  31.     register int c;
  32.     register char *cp;
  33.  
  34.     if(sp == 1)
  35.         if(optind >= argc ||
  36.            argv[optind][0] != '-' || argv[optind][1] == '\0')
  37.             return(EOF);
  38.         else if(strcmp(argv[optind], "--") == NULL) {
  39.             optind++;
  40.             return(EOF);
  41.         }
  42.     optopt = c = argv[optind][sp];
  43.     if(c == ':' || (cp=strchr(opts, c)) == NULL) {
  44.         ERR(": illegal option -- ", c);
  45.         if(argv[optind][++sp] == '\0') {
  46.             optind++;
  47.             sp = 1;
  48.         }
  49.         return('?');
  50.     }
  51.     if(*++cp == ':') {
  52.         if(argv[optind][sp+1] != '\0')
  53.             optarg = &argv[optind++][sp+1];
  54.         else if(++optind >= argc) {
  55.             ERR(": option requires an argument -- ", c);
  56.             sp = 1;
  57.             return('?');
  58.         } else
  59.             optarg = argv[optind++];
  60.         sp = 1;
  61.     } else {
  62.         if(argv[optind][++sp] == '\0') {
  63.             sp = 1;
  64.             optind++;
  65.         }
  66.         optarg = NULL;
  67.     }
  68.     return(c);
  69. }
  70.