/* getopt.h 
	vi:ts=3 sw=3:
 */
/* $Id: getopt.h,v 4.6 1995/02/08 13:14:56 espie Exp $
 * $Log: getopt.h,v $
 * Revision 4.6  1995/02/08  13:14:56  espie
 * *** empty log message ***
 *
 * Revision 4.6  1995/02/08  13:14:56  espie
 * *** empty log message ***
 *
 * Revision 4.5  1995/02/01  20:41:45  espie
 * Added color.
 *
 * Revision 4.5  1995/02/01  20:41:45  espie
 * Added color.
 *
 * Revision 4.4  1995/02/01  16:39:04  espie
 * Moved includes to defs.h
 *
 * Revision 4.4  1995/02/01  16:39:04  espie
 * Moved includes to defs.h
 *
 */

struct long_option
	{
	char *fulltext;
	int argn;
	char abbrev;
	int code;
	};

/* n = getlongopt(argc, argv, options):
 * try to parse options out of argv, using
 * ways similar to standard getopt
 */
XT int getlongopt P((int argc, char *argv[], struct long_option *options));

XT int optind;

XT char *optarg;

