diff options
author | Marcus Brinkmann <[email protected]> | 2008-05-26 13:43:20 +0000 |
---|---|---|
committer | Marcus Brinkmann <[email protected]> | 2008-05-26 13:43:20 +0000 |
commit | 9c10eb6625afacb997e716d7168dafaecff9aab7 (patch) | |
tree | 5d41b98303210e02bb8f12088c7f69e642a57198 /tools/gpgconf.h | |
parent | Make --runtime option of gpgconf under W32 work. (diff) | |
download | gnupg-9c10eb6625afacb997e716d7168dafaecff9aab7.tar.gz gnupg-9c10eb6625afacb997e716d7168dafaecff9aab7.zip |
doc/
2008-05-26 Marcus Brinkmann <[email protected]>
* tools.texi (Invoking gpgconf): Document --list-dirs.
tools/
2008-05-26 Marcus Brinkmann <[email protected]>
* gpgconf.c (enum cmd_and_opt_values): Add aListDirs.
(opts): Add aListDirs option.
(main): Handle aListDirs.
* gpgconf.h (gc_percent_escape): New declaration.
* gpgconf-comp.c (my_percent_escape): Make non-static and rename
to ...
(gc_percent_escape): ... this. Change all callers.
Diffstat (limited to '')
-rw-r--r-- | tools/gpgconf.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/gpgconf.h b/tools/gpgconf.h index 0a27dd9c3..39d2d097b 100644 --- a/tools/gpgconf.h +++ b/tools/gpgconf.h @@ -37,6 +37,11 @@ struct /*-- gpgconf-comp.c --*/ +/* Percent-Escape special characters. The string is valid until the + next invocation of the function. */ +char *gc_percent_escape (const char *src); + + void gc_error (int status, int errnum, const char *fmt, ...); /* List all components that are available. */ |