2 * Copyright 1993, 1995 Christopher Seiwald.
4 * This file is part of Jam - see jam.c for Copyright information.
7 * option.h - command line option processing
10 * \ -) "Command line option."
12 * 11/04/02 (seiwald) - const-ing for string literals
18 typedef struct option
{
19 char flag
; /* filled in by getoption() */
20 const char *val
; /* set to random address if true */
24 #define N_TARGETS (256)
26 extern int getoptions (int argc
, char **argv
, const char *opts
, option
*optv
, char **targets
);
27 extern const char *getoptval (option
*optv
, char opt
, int subopt
);