2 * Copyright (C) 1998,1999 Free Software Foundation, Inc.
4 * This file is part of GnuPG.
6 * GnuPG is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * GnuPG is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
21 #ifndef LIBJNLIB_ARGPARSE_H
22 #define LIBJNLIB_ARGPARSE_H
25 int *argc
; /* pointer to argc (value subject to change) */
26 char ***argv
; /* pointer to argv (value subject to change) */
27 unsigned flags
; /* Global flags (DO NOT CHANGE) */
28 int err
; /* print error about last option */
29 /* 1 = warning, 2 = abort */
30 int r_opt
; /* return option */
31 int r_type
; /* type of return value (0 = no argument found)*/
37 } r
; /* Return values */
44 const void *cur_alias
;
45 } internal
; /* DO NOT CHANGE */
52 const char *description
; /* optional option description */
57 int arg_parse( ARGPARSE_ARGS
*arg
, ARGPARSE_OPTS
*opts
);
58 int optfile_parse( FILE *fp
, const char *filename
, unsigned *lineno
,
59 ARGPARSE_ARGS
*arg
, ARGPARSE_OPTS
*opts
);
60 void usage( int level
);
61 const char *strusage( int level
);
62 void set_strusage( const char *(*f
)( int ) );
64 #endif /*LIBJNLIB_ARGPARSE_H*/