home *** CD-ROM | disk | FTP | other *** search
/ Mods Anthology 4 / Music-AmigaModsAnthology-4of4-Psychodk.mcsteam.iso / Tools / BeBox / Ralf_Tracker_0.3_Src / getopt.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-11-16  |  289 b   |  18 lines

  1. /* getopt.h */
  2. /* $Id: getopt.h,v 1.3 1993/11/17 15:31:16 espie Exp espie $
  3.  * $Log: getopt.h,v $
  4.  * Revision 1.3  1993/11/17  15:31:16  espie
  5.  * *** empty log message ***
  6.  *
  7.  */
  8.  
  9. struct long_option
  10.     {
  11.     char *fulltext;
  12.     int argn;
  13.     char abbrev;
  14.     };
  15.  
  16. extern int optind;
  17. extern char *optarg;
  18.