aboutsummaryrefslogtreecommitdiffstats
path: root/tools/gpgconf-list.c
blob: e774d2bf43119d66808eb3328a23fc4fcd936da1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/* gpgconf-list.c - Print list of options.
 *	Copyright (C) 2003 Free Software Foundation, Inc.
 *
 * This file is part of GnuPG.
 *
 * GnuPG is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * GnuPG is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
 */

#include <config.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include "gpgconf.h"
#include "i18n.h"

/* Format of the colon delimited listing is:

   Area: gpg, gpgsm, gpg-agent, scdaemon, dirmngr, "G" or empty for unspecified.
   Option name: Name of the option
   Expert level: Expertnesslevel of option: 0 - basic
   Immediately Change: "1" is the option is immediatley changeable
                       (e.g. through SIGHUP)
   Option index: Instance number of the option value to build lists. 
   Option value: Current value of the option
   
*/


/* List global options, i.er. those which are commonly required and
   may affect more than one program. */
static void
list_global_options (void)
{


}



void
gpgconf_list_standard_options (void)
{

  list_global_options ();


}