home *** CD-ROM | disk | FTP | other *** search
/ Phoenix Heaven Sunny 2 / APPARE2.BIN / oh_towns / dic / src / getopt.h < prev    next >
C/C++ Source or Header  |  1995-06-20  |  223b  |  12 lines

  1. struct     option {
  2.     char    opt;
  3.     char    pfg;
  4.     char    *str;
  5. };
  6.  
  7. extern    char    *optarg;
  8. extern    int    optind;
  9.  
  10. int    getopt_long(int ac, char *av[], struct option *tab);
  11. void    insert_opt(int *acp, char ***avp, int no, char *opt);
  12.